CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2006
    Posts
    26

    Red face Notify Icons anywhere on Desktop??

    Hi all,

    I'm working in Visual C#. For my Applications main form, I've used a notification icon which is getting displayed on the task bar, every time the form loads.

    But, instead of displaying the icon on the task bar (or the notifycation area...) can i get the display at the menu of my form which is at the top of the form??

    Can I change the display location of the notifyIcon to whereever I want??

    pls help me out solving this prob!!

    Thank you all in advance,
    Sriya

  2. #2
    Join Date
    Apr 2005
    Location
    Norway
    Posts
    3,934

    Re: Notify Icons anywhere on Desktop??

    Quote Originally Posted by Sriya
    Can I change the display location of the notifyIcon to whereever I want??
    Well, no, you cannot. A 'notifyIcon' is something that belongs in the 'notification area'. But, whatever you do in your applications frame is pretty much up to you. You can add buttons and images (or animations) and make them respond to mouse-click or whatever. And you should be able to make it look just like a notify icon - execpt that it's located somewhere in your form.

    Quote Originally Posted by Sriya
    can i get the display at the menu of my form which is at the top of the form??
    A menu has its set of rules on how to behave, what to show and how to show it, but there is something called owner-drawn menus that you should look into.

    Anyway, a status bar at the bottom of your form might be a better (or more standard) place to put such an icon.

    - petter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured