QSystemTrayIcon does not show message in Win 7?
General and Desktop
3
Posts
2
Posters
1.4k
Views
1
Watching
I want to show tray message with QSystemTrayIcon in winows 7:
@
QSystemTrayIcon* mm
mm->showMessage("Hello","Message 1");
@
but nothing has been shown !
Mehrdad Abdolghafari, Be silver
Hey !
Have you tried showing the tray icon first ?
@QSystemTrayIcon* mm(QIcon(...));
mm->show(); // <-- This
mm->showMessage("Hello", "Message");@
We all have started by asking questions. Then after some time, we can begin answering them.
thanks Max13 :)
Mehrdad Abdolghafari, Be silver