Autohide task bar option Not saved.

I go into the Taskbar properties and click the Autohide taskbar,  click apply then click OK.
This works great for a while and the taskbar hides fine.  Then sometime later it quits hiding,  I go back into properties and autohide is no longer checked.  So I Click it again, then click apply, then click lock taskbar then hit apply, then
hit OK.
each time after checking the autohide option I exit go back in and it has saved it that way and autohide works fine.
Then after some time it quits hiding again and I go back into the properties and autohide is once again unchecked.
This seems to be a different issue than what most people have which can be caused by the notifications of icons. I have already set those based on other answers but that doesn't work for my issue.  Any ideas as I am stumped?

Hello LuvWhiteSand,
What is your current situation?
Have you tried the solution as T. Kujala mentioned?
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer\Streams\Desktop]
delete the value named 'Toolbars'.
In Task Manager, select 'File' -> 'New Task' -> type 'explorer' to restart
the shell.
If that doesn't do the trick, repeat deleting 'TaskbarWinXP' as well.
Before you make changes to a registry key or subkey, we recommend that you export, or make a backup copy, of the key or subkey.
Best regards,
Fangzhou CHEN
Fangzhou CHEN
TechNet Community Support

Similar Messages

  • PSE 6: Task bar does not pop up in Editor

    When I move the cursor to the bottom of the screen in the PSE 6 Editor, the task bar does not open. I have to hit the Windows key to do it.
    Work o.k. in the Organizer.
    Windows Vista.
    Any ideas? - Thanks!
    Alexander

    Thats a bug that seems to be fixed in PSE 7. But theres a workaround instead of maximizing the Editor, manually resize it to fill the screen except for a strip of a couple of pixels along the bottom. The Editor will remember its last position when you next open it.

  • My cat walked on my keyboard and now my task bar will not stay up.  F3 brings it up, but it wont stay.

    My cat walked on my keyboard and now my task bar will not stay up.  F3 brings it up, but I would like it to stay up.

    This whole deal reeks. I do not know where you got your product from, but that's not how Adobe Photoshop works.
    Go here first: Contact Customer Care
    That is the official contact.
    Contact Customer Care by chat or Phone.
    If the website you went on is not www.adobe.com, close the browser.
    If the number is for a "survey" to "win a trip", hang up. It's a scam to get your credit card in order to "secure" the trip.

  • Smart View menu bar option not showing in Word

    Hello,
    Recently had Smart View (11.1.2) installed on my PC. I can see the Smart View menu bar option in all office products except Word (2003). Any suggestions as to how to get this to show?
    Thanks in advance.

    You need to ensure the COM add-in is enabled. File > Options > Add-in.
    If it's not shown, you will need to manually add the add-in referencing the HsAddin.dll from the Smartview\bin directory.

  • How do I get rid of a Google tab overlapping my task bar options.

    Their is a tab superimposed on my task bar. The type is obscuring the lettering of my task bar characters, as though someone put graffiti on it.
    Could this have something to do with it? How do I get rid of it?
    Thanks.

    Does it help if you place the tab bar at its original position?
    * View > Toolbars : [ ] Tabs on Top
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    In Firefox 4 [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    * Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"

  • ALV GRID Tool bar options not working

    Hello Experts,
    I copied the standard tool bar into my program with the name 'ZSALV_STANDARD' and displaying the output in the grid format in a container with the method set_table_for_first_display
    When I execute the program the standard buttong in the tool bar are not working... Can anyone guide where am I going wrong...
    Here is my code
    DATA :    gr_event_handler TYPE REF TO lcl_event_handler .
      DATA:  threed TYPE i VALUE 1.
      SET PF-STATUS  'ZSALV_STANDARD'.
    * Creating an instance for the event handler
      CREATE OBJECT gr_event_handler .
      TRY.
          CREATE DATA i_table TYPE TABLE OF (viewname).
          ASSIGN i_table->* TO <i_itab>.
          CREATE DATA wa_all LIKE LINE OF <i_itab>.
          ASSIGN wa_all->* TO <wa_tab>.
    *     Selecting data dynamically
          SELECT * FROM (viewname) INTO TABLE <i_itab>.
    *     Building the fieldcatelog
          CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
            EXPORTING
              i_structure_name       = viewname
            CHANGING
              ct_fieldcat            = li_fieldcat
            EXCEPTIONS
              inconsistent_interface = 1
              program_error          = 2
              OTHERS                 = 3.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
    *     Making fields editable except key fields
          IF sy-ucomm = 'UPD' OR  sy-ucomm = 'CHANGE'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              IF lwa_fieldcat-key = space.
                lwa_fieldcat-edit = 'X'.
                MODIFY li_fieldcat FROM lwa_fieldcat.
              ENDIF.
            ENDLOOP.
          ENDIF.
    *     Making fields editable
          IF sy-ucomm = 'NEW'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              lwa_fieldcat-edit = 'X'.
              MODIFY li_fieldcat FROM lwa_fieldcat.
            ENDLOOP.
            lh_flag = 'X'.
            CLEAR : <i_itab>.
            DO 100 TIMES.
              APPEND <wa_tab> TO <i_itab>.
            ENDDO.
          ENDIF.
    *     Exclude buttons
          PERFORM exclude_tb_functions CHANGING i_exclude.
          IF g_custom_container IS INITIAL.
            CREATE OBJECT g_custom_container
              EXPORTING
                container_name = g_container.
            CREATE OBJECT grid1
              EXPORTING
                i_parent = g_custom_container.
          ENDIF.
    *     Making all fields non-editable if display mode
          IF sy-ucomm = 'SHOW'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              lwa_fieldcat-edit = ' '.
              MODIFY li_fieldcat FROM lwa_fieldcat.
            ENDLOOP.
          ENDIF.
          IF sy-ucomm = 'SAVE'.
            LOOP AT li_fieldcat INTO lwa_fieldcat.
              IF lwa_fieldcat-key NE space.
                lwa_fieldcat-edit = space.
                MODIFY li_fieldcat FROM lwa_fieldcat.
              ENDIF.
            ENDLOOP.
          ENDIF.
    *     Displaying ALV Grid
          i_layout-NO_TOOLBAR = 'X'.
          i_layout-edit = 'X'.
          CALL METHOD grid1->set_table_for_first_display
            EXPORTING
              i_structure_name              = viewname
              it_toolbar_excluding          = i_exclude
              i_default                     = 'X'
              is_layout                     = i_layout
            CHANGING
              it_outtab                     = <i_itab>
              it_fieldcatalog               = li_fieldcat
            EXCEPTIONS
              invalid_parameter_combination = 1
              program_error                 = 2
              too_many_lines                = 3.
          IF sy-subrc NE 0.
            EXIT.
          ENDIF.
    *      Getting the changed data
          SET HANDLER gr_event_handler->handle_data_changed FOR grid1 .
        CATCH cx_sy_create_data_error.
      ENDTRY.
    Thanks alot in advance.
    Sri

    Hello ,
    try
        call method g_grid%->set_table_for_first_display
          exporting
            i_save               = p_save_layout%
            i_default            = 'X'
            is_layout            = ps_layout%
            is_variant           = ps_variant%
            it_toolbar_excluding = pt_exclude%
          changing
            it_outtab            = pt_alv_tab1[]
            it_fieldcatalog      = pt_fieldcat%[].
        call method g_grid%->set_toolbar_interactive.
    regards
    Prabhu

  • Changes to selected columns to display in Details tab in Task Manager are not saved during a reboot

    I use Task Manager on Server 2008 R2 to monitor performance. I have added several columns to the Processes tab using View..Select Columns. I have added CPU time, I/O read/write/other bytes, etc.
    The equivalent in Server 2012 is the Details tab. I figured out how to add these same columns - right click on the column headers, and choose "Select columns". This is not obvious by the way.
    However these selections are not persistent across a reboot. So every time I reboot, I need to add the columns back to the display. That is not the case with Server 2008 R2 - they are persistent.
    I am using a domain administrator userid, but not using roaming profiles.
    This is a retrogression vs. Server 2008 R2. Can it be fixed?

    Hi,
    I meant that both the added columns of Windows Server 2008 R2 and Windows Serve r2012 RC are persistent.
    You may install a new Windows Serve r2012 RC to check the symptom.
    Currently, you may perform a System File Checker (SFC /Scannow) to check the result.
    Regards,
    Arthur Li
    TechNet Community Support
    Arthur, I have the exact same problem as David Trounce.  The problem exists, as he described it, and I don't think you are understanding it.  Please pass this problem/bug/defect report to someone else so that it can be logged and fixed before
    RTM.  Thanks! -Kent

  • PDF Setup Options not saving

    I have been having trouble in Frame when I create a PDF (I think since Frame 9). Any time I tried to add or remove a paragraph tag to the Include Paragraphs it wouldn’t save my settings. This wasn’t a big deal at first. But when I started creating new manuals I started getting frustrated. Today I finally reached a point where I had to figure out what was going on. The first thing I did was notice that I didn’t have the most up-to date version of Frame. I’m all up-to-date now but it didn’t solve the problem.
    The solution - For some reason it's taking the PDF setup information for the whole book from the first document. So what you have to do is open the first document and then Save As PDF (you have to open it, you can’t just select it and then Save As PDF). Set up everything the way you want the same as usual. Then once you save that you can then do Save As PDF for the whole book and it works. If you need to change a setting or change a paragraph tag, you have to open the first doc again and save it there. It won't keep your changes in the book, just the first doc.

    Thanks for this post!  I just had the same problem with FrameMaker 10, and it worked as you described.
    Researching the matter, I discovered that while this behavior is undesirable, it's actually documented and works as designed!  Chapter 13, page 464 of "Using FrameMaker 10" (framemaker_10_help.pdf) has the following note:
    "In a book, the joboptions saved with the first file are applied to all files in the book. To get the desired results in the exported PDF file, open the first file. Then choose Format > Document > PDF Setup, adjust the settings, and click Set."
    How about moving those settings into the book file where they belong?

  • Privacy option not saving correctly.

    In the privacy options, why is it that when I chose the "only allow people in my contact list to contact me", not doing its job????
    Either FIX IT or get rid of it because every time I open Skype, there`s all these "IM`s" waiting for me and then I`ve got to go and waste my time with having to remove them, very ANNOYING|!!!!

    I'm not sure of what the logic behind this procedure, but actual responses from users who tried it confirm that it works (or at least this is something you can try while waiting for further responses from the experts).
    Please switch your status to offline for at least a minute, then switch back to online.  Then change your privacy settings to see if they will stick this time.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Options not saved when I exit Firefox

    I set my homepage to google , to appear on start-up , and cookies to be valid till they expire , press OK , happily surf the net , close firefox , and all my choices have gone out the window. Start with a blank page , I select home and get the firefox star page , and cookies are valid till I close Firefox. Running on 64-bit Windows 7 home premium , update every time Firefox publishes an update , what am I doing wrong , thanks in advance , Ron

    In case you use "Clear history when Firefox closes" or otherwise clear history:
    *do not clear the Cookies
    *do not clear the Site Preferences
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
    *https://support.mozilla.org/kb/remove-recent-browsing-search-and-download-history
    Clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, passwords, and other website specific data.
    Clearing cookies will remove all specified (selected) cookies including cookies with an allow exception that you would like to keep.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    There is software like Advanced SystemCare with its Surfing Protection feature that can protect files in the Firefox profile folder against changes.
    If you have such software then check the settings or uninstall this software.

  • User Account Advanced Options Not Saving

    I'm trying to either add an alias or change the account name of a user account in Server.app. Right click on a user and select Advanced Options. From there I add an alias then click OK. A spinner appears then disappears. No other indicators showing it saved. Press cancel and then go back in and all the fields are the way they were before I changed them. I have the latest Server.app installed.
    Any one else run into this and have a workaround?
    Thanks!

    WorkGroup Manager will allow you to change the UID of a user.
    Finder will allow the Admin to change the ownership of a folder, and then propagate that ownership to all sub-folders. I am nor certain whether Server [admin] will do that as well. I think it depends on your exact setup.
    I think you could also log in as the new User, authenticate as Admin, and copy the files to the new User home (which may give them new-user ownership.

  • Widget options not saved

    Since the STB update I cannot save changes to the options of a widget. Specifically, I load Weatherbug and it knows only one zip code. I hit Options and enter more zipcodes. Weatherbug now knows multiple zipcodes and works appropriately but if i exit the widget and immediately go back into it, only the first zipcode remains. I cannot make it save my changes.

    In case you use "Clear history when Firefox closes" or otherwise clear history:
    *do not clear the Cookies
    *do not clear the Site Preferences
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
    *https://support.mozilla.org/kb/remove-recent-browsing-search-and-download-history
    Clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, passwords, and other website specific data.
    Clearing cookies will remove all specified (selected) cookies including cookies with an allow exception that you would like to keep.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    There is software like Advanced SystemCare with its Surfing Protection feature that can protect files in the Firefox profile folder against changes.
    If you have such software then check the settings or uninstall this software.

  • Time Machine status bar option not available ... ?

    I have two Mac laptops ... one is a newer MacBook Pro and the other is a 12" Powerbook. Both went through an upgrade from Tiger to Leopard a while back and came through unscathed.
    Now I am in the process of configuring backups with Time Machine, and noticed one oddity. On the MacBook Pro, I have the checkbox option to "Show Time Machine status in Menu Bar", but on the PowerBook, the option doesn't show up.
    Is there something about the older PPC machines that keeps this from being an option?
    Jake

    After the first backups, the progress bar / window is gone now.
    Is this normal? And can I get it back?
    Thank you!

  • Manual update option not saved

    I have all my music on an external drive that is not always connected to my laptop. So I would like to manage my iPod manually. The problem is that everytime I open iTunes the manual option is not checked and my playlists get erased faster than you can say "stop doing that".
    How do I enforce the manual option for all time?
    80GB iPod   Windows XP  

    You can use a keyboard command to prevent your iPod auto-syncing with iTunes. While connecting the iPod to the computer on Windows with iTunes 7 installed hold down the Control and Alt keys (or Shift + Ctrl keys in older versions). This will stop the iPod from auto-syncing with iTunes and the iPod will appear in the source list. Wait until you are sure the iPod has mounted, and that it will not auto sync and then you can let the keys go. This may take between 20 to 30 seconds depending on your computer. You should be able to set your iPod to manual once you are connected:
    iTunes 7 Keyboard Shortcuts for Windows
    Managing content manually on iPod

  • IPod View Options Not Saved in iTunes

    I just upgraded to 7.0.1 to see if it would fix this problem, but no dice. The view options for my 5G 80GB reset back to the factory settings each time I disconnect my iPod, or even if I restart iTunes and leave the iPod connected.
    I'd like to have the browser up and have some of the other options changed, like showing track numbers and time. This is a setting that always stays the same with my previous iPod (4G 20GB). Anyone sles have this problem?

    Sorry - I just posted a similar question, I didn't quite read your question carefully enough. I am having a similar problem - I keep having to restore my Ipod. If someone tells me how to check when I last updated my software, I could tell you if I upgraded to 7.01. Maybe that is the issue -
    If anyone from APPLE is reading this - can you tell us if there are issues with the 7.01 upgrade in that the ITUNES software is not recognizing our IPODS anymore.
    thanks,

Maybe you are looking for

  • External Hard Drives will not Mount

    I have a WD & LaCie external hard drives in my iMac G5 they have been working fine until I started using the new Time Machine program. Now the drive show up in disk utility but not on the desktop. Disk utility has been no help in repairing them and i

  • CS4 and Yosemite, Camera Raw update

    I bought a new apple macbook with Yosemite, I installed Adobe CS4. All good so far. But when i wanted to install the Camera Raw update Adobe refused. How can I install the newest Camera Raw?

  • GPS /MAPS Nokia n95

    Hey, I Got N95, My MAPS And GPS Ect Dont Seem To Be Picking Upo Anything, They Just Ask For Bluetooth even when i connect to my WLAN nothing happens? Do i need to download anything? Thanks. Josh

  • Podcasts not keeping their saved points when paused

    Since the podcast app was updated yesterday (31 may) it no longer holds a save point, ie if I pause the podcast after a couple of seconds it jumps back to the start.  Podcasts also now do not pause during a phone call, it just lowers the volume. Is t

  • Selecting a Item in horizontal list programatically

    Hi, I have multiple horizontal lists in a canvas and am trying to manage the focus between them. Am facing problems while I try to programatically select a item by setting the SelectedItem property to [0], can someone help me please!! kcb