Activate QuickLaunch

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jonas

    Activate QuickLaunch

    Can you activate and deactivate the Windows Toolbar function "QuickLaunc h"
    programatically ?


  • Kevin Yu [MSFT]

    #2
    RE: Activate QuickLaunch

    Hi Jonas,

    Do you mean that you need to hide/unhide windows tools bar programatically ?
    If so, I suggest you check the following KB article.



    HTH.

    Kevin Yu
    =======
    "This posting is provided "AS IS" with no warranties, and confers no
    rights."

    Comment

    • Jonas

      #3
      Re: Activate QuickLaunch

      Hi Kevin.

      No i don´t need to hide/unhide the taskbar. I only want to
      activate/unactivate the Quick Launch tray in Win XP. Right next to the
      start-menu you have this litte toolbar that can contain shortcuts to
      applications etc. As a users you can activate/deactivate this function just
      by rightclick on the Toolbars menu and mark or unmark Quick Launch.
      I need a way to activate only the toolbar function Quick Launch.
      "Kevin Yu [MSFT]" <v-kevy@online.mic rosoft.com> wrote in message
      news:LEYtdk1uFH A.3020@TK2MSFTN GXA01.phx.gbl.. .[color=blue]
      > Hi Jonas,
      >
      > Do you mean that you need to hide/unhide windows tools bar
      > programatically ?
      > If so, I suggest you check the following KB article.
      >
      > http://support.microsoft.com/kb/q202099/
      >
      > HTH.
      >
      > Kevin Yu
      > =======
      > "This posting is provided "AS IS" with no warranties, and confers no
      > rights."
      >[/color]


      Comment

      • Kevin Yu [MSFT]

        #4
        Re: Activate QuickLaunch

        Hi Jonas,

        The quick launch information is put in a folder in Documents and
        Settings\userna me\Application Data\Microsoft\ Internet Explorer\Quick
        Launch. You can use Process.Start to launch it directly like the following:

        System.Diagnost ics.Process.Sta rt(@"C:\Documen ts and
        Settings\v-kevy\Applicatio n Data\Microsoft\ Internet Explorer\Quick
        Launch\Launch Internet Explorer Browser");

        HTH.

        Kevin Yu
        =======
        "This posting is provided "AS IS" with no warranties, and confers no
        rights."

        Comment

        • Jonas

          #5
          Re: Activate QuickLaunch

          Hi Kevin.

          I don´t want to launch an application in Quick Launch folder i just want to
          enable the toolbarfunction .
          "Kevin Yu [MSFT]" <v-kevy@online.mic rosoft.com> wrote in message
          news:5GxaRgZvFH A.580@TK2MSFTNG XA01.phx.gbl...[color=blue]
          > Hi Jonas,
          >
          > The quick launch information is put in a folder in Documents and
          > Settings\userna me\Application Data\Microsoft\ Internet Explorer\Quick
          > Launch. You can use Process.Start to launch it directly like the
          > following:
          >
          > System.Diagnost ics.Process.Sta rt(@"C:\Documen ts and
          > Settings\v-kevy\Applicatio n Data\Microsoft\ Internet Explorer\Quick
          > Launch\Launch Internet Explorer Browser");
          >
          > HTH.
          >
          > Kevin Yu
          > =======
          > "This posting is provided "AS IS" with no warranties, and confers no
          > rights."
          >[/color]


          Comment

          • Kevin Yu [MSFT]

            #6
            Re: Activate QuickLaunch

            Hi Jonas,

            Sorry for the misunderstandin g. Now, I understand that you need to
            show/hide the quich launch area on the windows toolbar. Am I right?

            Based on my research, this interface was not exposed by shell32.dll. So it
            seems that we cannot enable/disable it programatically .

            If you need further consulting on this issue, I suggest you try to contact
            Microsoft PSS. Here is the contact information:



            Kevin Yu
            =======
            "This posting is provided "AS IS" with no warranties, and confers no
            rights."

            Comment

            Working...