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
  1. Home
  2. Mobile Development
  3. Mobile
  4. Removing Annunciators from Taskbar

Removing Annunciators from Taskbar

Scheduled Pinned Locked Moved Mobile
c++linuxquestion
11 Posts 3 Posters 29 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.
  • realJSOPR realJSOP

    Pocket PC 2002 eVC++ 3.0 I want to programatically remove/add the keyboard annunciator from the taskbar. I suspect that I have to use Shell_NotifyIcon, but I don't know where to find the ID of the icon to remove. Any suggestions? ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

    J Offline
    J Offline
    Joao Paulo Figueira
    wrote on last edited by
    #2

    Did you check this article? http://www.codeproject.com/useritems/fullscreen.asp[^]

    1 Reply Last reply
    0
    • realJSOPR realJSOP

      Pocket PC 2002 eVC++ 3.0 I want to programatically remove/add the keyboard annunciator from the taskbar. I suspect that I have to use Shell_NotifyIcon, but I don't know where to find the ID of the icon to remove. Any suggestions? ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

      A Offline
      A Offline
      AKSIVAKUMAR
      wrote on last edited by
      #3

      Hi, Check this Out ! http://www.pocketpcdn.com/qa/noswitch.html http://www.pocketpcdn.com/qa/fullscreen\_propertysheet.html http://www.pocketpcdn.com/qa/ If you have any questions please let me know in detail. Thanks Siva

      1 Reply Last reply
      0
      • realJSOPR realJSOP

        Pocket PC 2002 eVC++ 3.0 I want to programatically remove/add the keyboard annunciator from the taskbar. I suspect that I have to use Shell_NotifyIcon, but I don't know where to find the ID of the icon to remove. Any suggestions? ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

        realJSOPR Offline
        realJSOPR Offline
        realJSOP
        wrote on last edited by
        #4

        I want to *remove* the SIP button altogether (and be able to re-display it when it's needed). ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

        J 1 Reply Last reply
        0
        • realJSOPR realJSOP

          I want to *remove* the SIP button altogether (and be able to re-display it when it's needed). ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

          J Offline
          J Offline
          Joao Paulo Figueira
          wrote on last edited by
          #5

          John Simmons / outlaw programmer wrote: I want to *remove* the SIP button altogether (and be able to re-display it when it's needed). Check out the SHFullScreen API. In the dwState parameter, you can specify either SHFS_HIDESIPBUTTON or SHFS_SHOWSIPBUTTON.

          realJSOPR 1 Reply Last reply
          0
          • J Joao Paulo Figueira

            John Simmons / outlaw programmer wrote: I want to *remove* the SIP button altogether (and be able to re-display it when it's needed). Check out the SHFullScreen API. In the dwState parameter, you can specify either SHFS_HIDESIPBUTTON or SHFS_SHOWSIPBUTTON.

            realJSOPR Offline
            realJSOPR Offline
            realJSOP
            wrote on last edited by
            #6

            I tried this in the OnCreate function in CMainFrame, but it returned FALSE. The hwnd wasn't NULL, so I can only assume that the iPAQ doesn't support the function call, or I'm not calling it in the right place. ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

            J 2 Replies Last reply
            0
            • realJSOPR realJSOP

              I tried this in the OnCreate function in CMainFrame, but it returned FALSE. The hwnd wasn't NULL, so I can only assume that the iPAQ doesn't support the function call, or I'm not calling it in the right place. ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

              J Offline
              J Offline
              Joao Paulo Figueira
              wrote on last edited by
              #7

              That's a shame... The only thing I can recall is that maybe your HWND is not top-level, but being a CFrame-derived it should be... Anyway, examples point to the use of this function on the InitInstance. I'm trying to use it there but is also not working, although no error is returned now.

              realJSOPR 1 Reply Last reply
              0
              • realJSOPR realJSOP

                I tried this in the OnCreate function in CMainFrame, but it returned FALSE. The hwnd wasn't NULL, so I can only assume that the iPAQ doesn't support the function call, or I'm not calling it in the right place. ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

                J Offline
                J Offline
                Joao Paulo Figueira
                wrote on last edited by
                #8

                Now I have it. After "hiding" the SIP button, you have to resize the frame window in order to cover it. Also, the toolbar must be hidden.

                realJSOPR 1 Reply Last reply
                0
                • J Joao Paulo Figueira

                  Now I have it. After "hiding" the SIP button, you have to resize the frame window in order to cover it. Also, the toolbar must be hidden.

                  realJSOPR Offline
                  realJSOPR Offline
                  realJSOP
                  wrote on last edited by
                  #9

                  Hide the toolbar? Doesn't that kinda defeat the purpose? :) ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

                  J 1 Reply Last reply
                  0
                  • J Joao Paulo Figueira

                    That's a shame... The only thing I can recall is that maybe your HWND is not top-level, but being a CFrame-derived it should be... Anyway, examples point to the use of this function on the InitInstance. I'm trying to use it there but is also not working, although no error is returned now.

                    realJSOPR Offline
                    realJSOPR Offline
                    realJSOP
                    wrote on last edited by
                    #10

                    I'm making the call in CMainFrame::OnCreate. Wouldn't it be a safe guess to say that the CMainFrame class represents the top-level window at it's creation? ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

                    1 Reply Last reply
                    0
                    • realJSOPR realJSOP

                      Hide the toolbar? Doesn't that kinda defeat the purpose? :) ------- signature starts "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 Please review the Legal Disclaimer in my bio. ------- signature ends

                      J Offline
                      J Offline
                      Joao Paulo Figueira
                      wrote on last edited by
                      #11

                      You're kinda right, but I've yet to see a sample of what you want to do. If you go to MSDN, the samples of SHFullScreen are exactly that: full screen. I think I led you into a blind alley: maybe this is not the solution you are looking for. Sorry! :(

                      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