Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Want to hide the windows start menu

Want to hide the windows start menu

Scheduled Pinned Locked Moved C / C++ / MFC
tutorial
7 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Offline
    D Offline
    dinesh_IP
    wrote on last edited by
    #1

    Hi Friends, We are developing an application which will start when the computer starts and the system will shutdown when the application is closed. I want to hide the windows 'start' menu so that user can not access any other soft wares from the system apart from our application. Can any one pls suggest any function and how to hide the start menu on the start up Thanks in Advance, Dinesh

    T H M 3 Replies Last reply
    0
    • D dinesh_IP

      Hi Friends, We are developing an application which will start when the computer starts and the system will shutdown when the application is closed. I want to hide the windows 'start' menu so that user can not access any other soft wares from the system apart from our application. Can any one pls suggest any function and how to hide the start menu on the start up Thanks in Advance, Dinesh

      T Offline
      T Offline
      toxcct
      wrote on last edited by
      #2

      switch to another desktop...


      TOXCCT >>> GEII power

      [VisualCalc 3.0  updated ][Flags Beginner's Guide  new! ]

      1 Reply Last reply
      0
      • D dinesh_IP

        Hi Friends, We are developing an application which will start when the computer starts and the system will shutdown when the application is closed. I want to hide the windows 'start' menu so that user can not access any other soft wares from the system apart from our application. Can any one pls suggest any function and how to hide the start menu on the start up Thanks in Advance, Dinesh

        H Offline
        H Offline
        Hamid Taebi
        wrote on last edited by
        #3

        It seems you need to FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(0); FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(1); /* CWnd *pwnd; pwnd=FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd,0, "Button", NULL); pwnd->ShowWindow(0); pwnd->ShowWindow(1); */

        _**


        **_

        WhiteSky


        T T 2 Replies Last reply
        0
        • H Hamid Taebi

          It seems you need to FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(0); FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(1); /* CWnd *pwnd; pwnd=FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd,0, "Button", NULL); pwnd->ShowWindow(0); pwnd->ShowWindow(1); */

          _**


          **_

          WhiteSky


          T Offline
          T Offline
          toxcct
          wrote on last edited by
          #4

          do you think seriously (even if it does work for hiding the start button) that it will prevent, as the OP wants, to users to launch applications ? the windows+R keyboard combination allow the user to reach the "Run..." dialog, Windows+E keys, to launch the explorer... i don't think this "security reason" should be solved like this...


          TOXCCT >>> GEII power

          [VisualCalc 3.0  updated ][Flags Beginner's Guide  new! ]

          1 Reply Last reply
          0
          • D dinesh_IP

            Hi Friends, We are developing an application which will start when the computer starts and the system will shutdown when the application is closed. I want to hide the windows 'start' menu so that user can not access any other soft wares from the system apart from our application. Can any one pls suggest any function and how to hide the start menu on the start up Thanks in Advance, Dinesh

            M Offline
            M Offline
            Michael Dunn
            wrote on last edited by
            #5

            You're thinking about writing a replacement shell, which will be run instead of Explorer at login time. Check out LiteStep[^] for an example of a shell replacement.

            --Mike-- Visual C++ MVP :cool: LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ

            1 Reply Last reply
            0
            • H Hamid Taebi

              It seems you need to FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(0); FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(1); /* CWnd *pwnd; pwnd=FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd,0, "Button", NULL); pwnd->ShowWindow(0); pwnd->ShowWindow(1); */

              _**


              **_

              WhiteSky


              T Offline
              T Offline
              ThatsAlok
              wrote on last edited by
              #6

              WhiteSky wrote:

              FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(0); FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(1);

              your Window will hung after some time !

              "Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow

              cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You

              H 1 Reply Last reply
              0
              • T ThatsAlok

                WhiteSky wrote:

                FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(0); FindWindowEx(FindWindow("Shell_TrayWnd", NULL)->m_hWnd, 0, "Button", NULL)->ShowWindow(1);

                your Window will hung after some time !

                "Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow

                cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and You

                H Offline
                H Offline
                Hamid Taebi
                wrote on last edited by
                #7

                It has a mistake/**/ and FindWindowEx(..... was a code and you can use from CWnd.Did you get my mail!?

                _**


                **_

                WhiteSky


                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups