Taskbarnotifier
-
Trying to make a small notification window in vc++ , like you might know from Firefox (download finished) or Thunderbird (new emails). My problem is that when I show it and the main form(Parent window) is also poped with nitification window.... How to prevent this Pls help me.............
-
Trying to make a small notification window in vc++ , like you might know from Firefox (download finished) or Thunderbird (new emails). My problem is that when I show it and the main form(Parent window) is also poped with nitification window.... How to prevent this Pls help me.............
I'm not sure but I think this is because when you intercepthe message you use to show the dialog box it gives automatically the focus to your application and your CFormView is shown as consequence. Maybe you can made something like ParentView.SetFocus (FALSE) or ParentWidnow.ShowWindow (FALSE) at the beggining of your code, and the opposite when you re-need it.
Greetings. -------- M.D.V. If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
-
Trying to make a small notification window in vc++ , like you might know from Firefox (download finished) or Thunderbird (new emails). My problem is that when I show it and the main form(Parent window) is also poped with nitification window.... How to prevent this Pls help me.............
have a look http://www.codeguru.com/Cpp/controls/statusbar/article.php/c5937/ Ashish K
-
Trying to make a small notification window in vc++ , like you might know from Firefox (download finished) or Thunderbird (new emails). My problem is that when I show it and the main form(Parent window) is also poped with nitification window.... How to prevent this Pls help me.............