Last version did the same thing. Open the browser and add-on bar comes on. Close add-on bar and open the browser again and the add-on bar comes on again. Don't want the add-on bar. How to get rid of it? Don't refer me to faq's, done all of that.

Add-on bar doesn't stay off when you turn it off. The browser doesn't remember when I turn it off. Removing the icons doesn't help, they aren't all removable

I do use the add on bar but only occasionally and would like to be able to control its appearance, this is happening in XP & Windows 7. Thanks

Similar Messages

  • I talked to a advisor and she said to back up and restore my ipod because the home button on my ipod touch is not responding so i did and it still does the same thing i would have to press it repeatedly just to close an app

    My ipod home button just doesnt respond properly anymore and my head phone jack is still messed up even when i restored everything and went to factory settings so im guessing its a hardware issue and i wanted to know how to send it back for repairs please thank thank you =^.^=

    Don't listen to any of them...
    Just recalibrate it! I have a similar issue where I kept pressing my home button and nothing worked.
    Here are some websites the tell you how to fix it!
    How to recalibrate: http://nealbo.hubpages.com/hub/Recalibrate-Unresponsive-iPhone-Home-Button
    How to fix: http://nealbo.hubpages.com/hub/Fix-a-broken-unresponsive-or-sticky-iPhone-Home-B utton
    And if both suggestions don't work, go to settings, General, Acessability, and turn on assistive touch so that a little circle appears in the corner, tap it and tap home to work as your home button!

  • Something called, DropDownDeals, has invaded my laptops internet applictions. It does not come up as a virus, however is only on my laptop and shows annoying advertising I do not want. Any ideas on how to get rid of this silly thing?

    It is mainly on my Facebook . It loads the normal page first then squishes all normal content to the middle to make room for massive ads, advertising cheap deals with random advertsing websites. I do not know how I got it but I do not want it! Please help!

    Thank you so much! No idea how I got it but thanks!

  • How to get rid of "ORA-22881: dangling REF" error on :new.OBJECT_VALUE?

    Hi,
    I'm having trouble with a "ORA-22881: dangling REF" error against :new.OBJECT_VALUE when a trigger executes.
    Here is the initial trigger:
    create or replace TRIGGER "CSHEET_UPDATE"
    BEFORE UPDATE ON "CSHEET" FOR EACH ROW
    BEGIN
    SELECT
    updateXML(
    :new.OBJECT_VALUE,
    '/Csheet/METADATA/MODIFIED_DATE/text()', to_char(SYSDATE, 'YYYY-MM-DD') || 'T' || to_char(SYSDATE, 'HH:MI:SS')
    INTO :new.OBJECT_VALUE FROM dual;
    END;
    And this is the error I get with even a simple UPDATE:
    BEGIN
    UPDATE CSHEET SET OBJECT_VALUE = OBJECT_VALUE WHERE rownum = 1;
    COMMIT;
    END;
    Error report:
    ORA-22881: dangling REF
    ORA-06512: at "LNC.CSHEET_UPDATE", line 5
    ORA-04088: error during execution of trigger 'LNC.CSHEET_UPDATE'
    ORA-06512: at line 2
    22881. 00000 - "dangling REF"
    *Cause:    The object corresponding to the REF that was accessed does not
    exist.
    *Action:   Ensure that the REF value is pointing to an existing object.
    However, if I add a schemavalidate() call at the beginning of the trigger then the error disappears.
    New trigger:
    create or replace TRIGGER "CSHEET_UPDATE"
    BEFORE UPDATE ON "CSHEET" FOR EACH ROW
    BEGIN
    :new.OBJECT_VALUE.schemavalidate();
    SELECT
    updateXML(
    :new.OBJECT_VALUE,
    '/Csheet/METADATA/MODIFIED_DATE/text()', to_char(SYSDATE, 'YYYY-MM-DD') || 'T' || to_char(SYSDATE, 'HH:MI:SS')
    INTO :new.OBJECT_VALUE FROM dual;
    END;
    Is there another way, besides using ":new.OBJECT_VALUE.schemavalidate();", to correct the :new.OBJECT_VALUE dangling REF issue?
    Thanks
    Keith

    Hi Marco,
    This is my version info:
    Oracle Database 11g Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE 11.1.0.6.0 Production
    TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    CSHEET is indeed object relational storage.
    BEGIN
    DBMS_XMLSCHEMA.REGISTERSCHEMA(
    schemaurl => 'CSheet.xsd',
    schemadoc => sys.UriFactory.getUri('/public/Schemas/CSheet.xsd'),
    local => TRUE,
    gentypes => TRUE,
    genbean => FALSE,
    gentables => TRUE,
    force => FALSE,
    owner => 'LNC',
    enablehierarchy => DBMS_XMLSCHEMA.ENABLE_HIERARCHY_NONE
    END;
    The only "unusual" aspect of it is that it does some out-of-line storage, has a primary key assigned internally, and specifies a couple of unique restrictions:
    Snippets from the schema:
    <xs:element name="Csheet" xdb:defaultTable="CSHEET" xdb:columnProps="CONSTRAINT CSHEET_pkey PRIMARY KEY (XMLDATA.UCN)">
    <xs:element name="LEGISLATION" maxOccurs="unbounded" xdb:SQLInline="false" xdb:defaultTable="CSHEET_LEGISLATION">
    <xs:complexType>
    <xs:sequence>
    <xs:choice>
    <xs:sequence>
    <xs:element name="NAME" type="reasonable_data_T"/>
    <xs:element name="CITATION" minOccurs="0" type="CITATION_T"/>
    </xs:sequence>
    <xs:element name="CITATION" type="CITATION_T"/>
    </xs:choice>
    <xs:element name="REFERENCES">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="REFERENCE" maxOccurs="unbounded" xdb:SQLInline="false" xdb:defaultTable="CSHEET_REFERENCES">
    <xs:complexType>
    <xs:sequence>
    <xs:unique name="unique_pinpoints">
    <xs:selector xpath="REFERENCE"/>
    <xs:field xpath="PINPOINT"/>
    </xs:unique>
    <xs:unique name="unique_legislation">
    <xs:selector xpath="LEGISLATION"/>
    <xs:field xpath="CITATION"/>
    </xs:unique>
    And I rename and scope the REF tables:
    DECLARE
    gen_name VARCHAR2 (4000);
    BEGIN
    SELECT TABLE_NAME INTO gen_name FROM USER_NESTED_TABLES
    WHERE PARENT_TABLE_NAME = 'CSHEET';
    EXECUTE IMMEDIATE 'RENAME "' || gen_name || '"TO CSHEET_LEG_V';
    SELECT TABLE_NAME INTO gen_name FROM USER_NESTED_TABLES
    WHERE PARENT_TABLE_NAME = 'CSHEET_LEGISLATION';
    EXECUTE IMMEDIATE 'RENAME "' || gen_name || '"TO CSHEET_REF_V';
    END;
    ALTER TABLE CSHEET_LEG_V ADD SCOPE FOR (COLUMN_VALUE) IS CSHEET_LEGISLATION;
    ALTER TABLE CSHEET_REF_V ADD SCOPE FOR (COLUMN_VALUE) IS CSHEET_REFERENCES;
    Nothing really non-standard and everything works just fine...except I HAVE to schemavalidate() to undangle my REF :( .
    I don't even understand where the REF is coming from since it was my understanding that OBJECT_VALUE was considered an XMLType. Could it have something to do with the out-of-line tables?
    Thanks
    Keith

  • I am getting a pop up on my iPhone 4S asking password of my iCloud even though I feed the password but still keep on asking the same thing every second so I am not able to use my iPhone.

    I am getting a pop up on my iPhone 4S asking password of my iCloud even though I feed the password but still keep on asking the same thing every second so I am not able to use my iPhone.at various times it asks different passwords.

    Curretly, there is an iCloud blackout.  It started this morning around 2AM California time (Pacific), 5AM New York (Eastern).  A lot of people have been having issues all day, including me.  No iCloud services are online.  Even Find My iPhone is down.

  • I am using Macbook pro with updated maverick OS but what i am seeing is it is using 20 GB more excluding my personal file... but at the time od downloading maverick it shows it will use only 5Gb, so how to get rid of this problem.

    whenever i open my laptop it comes with an option for login to to wifi network with no option of minimizing that window.
    i got irritated sometimes i dont want to use internet and want to watch movies. so how to get rid of this window.

    Please can u answer it fast

  • How to get rid of double tap on my iphone 5c

    how to get rid of double tap on my iphone 5c

    Settings App > Music > Show All Music > turn toggle off. Restart music app. Or is that what you tried?
    If so, go to Settings > Cellular > switch music and iTunes off. Keep in mind that you'll need to turn this back on to shop/download from iTunes.

  • HT201317 I want but don't have iCloud icon in control panel (internet). I have a MobileMe icon which I can't log into and I'm not sure if it is an old version of the same thing? Clicking on it directs me to a closed website which redirects me to iCloud.

    I'm trying to set up photo stream on my PC so that photos automatically download and are saved on my harddrive but I cannot find an iCloud icon in the relevent section of the control panel. I do have a MobileMe icon but cannot log into it with my Apple logins and am not sure if it is the same thing anyway. Any advice how to get photo streaming set up?

    sandy_ozbugs wrote:
    Thanks. Unfortunately my system does not appear to be up to date enough. I am runnung on Windows XP not Vista (Vista was out when I got my computer but new so was recommended the old proven system). Is there any way of getting around this or no vista no iCloud?
    Cheers, S
    Install Vista or Windows 7. You will also need Office 2007 or 2010

  • Ive downloaded the latest version of itunes and now i cant open itunes. it says im missing something but when i go to download it again just to be safe it keeps saying the same thing and i cant open my itunes anymore

    I cant open my itunes. it said i needed to download the 10.5.2 version to be able to upload the songs to my new ipod (touch) and when i went to do that my itunes wont open at all. me and my mom tried everything. i even went on my brothers account to get at least some songs and his did the same thing even though i didnt download it to the newest version. after i downloaded the lastest version and tried to open my itunes it said it was missing something so i went and downloaded it again. i know that was probably bad to do but i didnt know what else to do. even though i went and did that it keeps saying that im missing something. i dont know what to do to get my itunes to work again and if ill have to redownload all my songs and videos again.
    Pleas help.
    Thanks much,
    Sammii

    Plug your iPod into your computer, it will begin to sync. Now check to see if the playlists have been added.
    If not, go to the songs tab under your iPod when it is connected to iTunes, Unless you have checked "Sync all songs (or something to those words)" you should have an option on what you can put on your iPod. Make sure to check the playlists that you want on your iPod.

  • Firefox 4.0 is clunky with big ugly buttons. It looks bulky and busy. How do I keep 4.0 but with the look of the previous version? I have the default look and I don't want to add any backgrounds or any themes.

    How do I streamline all the 4.0 features, but without adding any skins, themes or backgrounds? Basically I want to keep the default of the previous Firefox version as this new 4.0 is ugly and bulky and it does not make for smooth navigation. I don't want to add any customizations that will slow down my computer so I want it like the previous version. I would rather try to correct this than go back to a previous version. Thanks.

    Thanks for the article. I've done some of the suggestions but it is still not the same....Does anyone else miss the status bar? Even with installing the add on for it, it did not work for me. Overall, the article suggestions made a definite improvement. What was Mozilla thinking with this version? But thanks for pointing me to that article!

  • I tried to open a folder in my Documents. It does not show in any window but does show up when I am half way between windows. It did the same thing when I tried to empty the trash. It asked if that was what I wanted but I could't say yes because it was or

    I tried to open a folder in my Documents. It does not show in any window but does show up when I am half way between windows. It did the same thing when I tried to empty the trash. It asked if that was what I wanted but I could't say yes because it was or

    what is your question/issue here? did the folder have any content in it to begin with? screen shots of what you may be seeing?
    if english isn't your native language, write it in what you are most comfortable speaking in to describe your issue.

  • I just did the recent upgrade and now I keep getting an error message when I try to open a book on my Kindle app, I have deregistered the app and reloaded and the same thing happens, does anyone know how to fix?

    I just did the recent upgrade and now I keep getting an error message when I try to open a book on my Kindle app, I have deregistered the app and reloaded and the same thing happens, does anyone know how to fix?

    You are seeing the message because the new AirPort Extreme has some specific System Requirements:
    http://www.apple.com/airport-extreme/specs/
    Setup and Administration
    iPhone, iPad, or iPod touch with iOS 5 or later and AirPort Utility 1.3
    Mac with OS X Lion v10.7.5 or later and AirPort Utility 6.3
    AirPort Utility 5.6.1 in Snow Leopard may or may not work correctly with the new Extreme for all functions. As long as things are working OK for now, you can probably leave them "as is" and wait for another Mavericks update to fix some issues before you "upgrade".
    If you have an iPhone or iPad, you could use that to administer any settings changes on the new Extreme.

  • I've got a problem:  if i want to back up my device manual (the same thing if it should does automaticly by charging) there's an error called: "the last backup couldn't be constructed"(don't know if it's right written, i'm german).Does sb. know what do?

    i've got a problem:  if i want to back up my device manual (the same thing if it should does automaticly by charging) there's an error called: "the last backup couldn't be constructed"(don't know if it's right written, i'm german).Does sb. know what to do? Help would be nice!!
    Henrik

    Sorry its Thanksgiving holiday here, here is a picture of the hard drive.
    After doing this, try the other suggestions if needed. then let us know!
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****
    Attachments:
    toshiba hard drive.jpg ‏14 KB

  • I have just updated to the new version of Firefox. Eventhough, i have reboated my computor, Firfox prompts to do it again and again and would not open. The same things happen if i try to unistall it or redownload it. What can I do?

    Question
    I have just updated to the new version of Firefox. Eventhough, i have reboated my computor, Firfox prompts to do it again and again and would not open. The same things happen if i try to unistall it or redownload it. What can I do? edit

    If there are problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the disk image (dmg) file to the desktop
    *Firefox 7.0.x: http://www.mozilla.com/en-US/firefox/all.html
    *Trash the current Firefox application to do a clean (re-)install
    *Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data if you uninstall and (re)install Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • Recently updated Itunes to 10.7 and when I try running it, it ends up freezing my computer and never opening. I uninstalled it and then reinstalled it, and the same thing has happened. I don't know what to do.

    Recently updated Itunes to 10.7 and when I try running it, it ends up freezing my computer and never opening. I uninstalled it and then reinstalled it, and the same thing has happened. I don't know what to do.

    I am experiencing the same issue , feels very annoying .  By the way I using a Windows system but that should not matter.

  • The last two times I have updated my iphone 4 it has stopped during the process and has to be completely restored.  This wipes out the memory that was used previously and it doesn't come back.  Now with update to ver 6 it did the same thing.  Why?

    Ver 6 wipes out the iphone 4 and it won't restore. 
    What is wrong with apple?
    It did the same thing with ver 5

    Hi there, 
    According to the article below, the error may be related to a hardware issue. Take a look below for troubleshooting steps. 
    Resolve iOS update and restore errors
    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    These errors mean that your device or computer may have a hardware issue that's preventing the update or restore from completing.
    Check that your security software and settings aren't preventing your device from communicating with the Apple update server.
    Then try to restore your iOS device two more times while connected with a cable, computer, and network you know are good.
    Confirm that your security software and settings are allowing communication between your device and update servers.
    If you still see the error message when you update or restore, contact Apple support.
    -Griff W. 

Maybe you are looking for