I want my App emerge on system tray when running and the Dialog GUI does not appear at all. when I use ShowWindow(SW_HIDE) in OnInitDialog,it seems does not work! why? does anyone can help me? thank you in advance.
Printable View
I want my App emerge on system tray when running and the Dialog GUI does not appear at all. when I use ShowWindow(SW_HIDE) in OnInitDialog,it seems does not work! why? does anyone can help me? thank you in advance.
Buddy ,
Create MOdeless Dialog with the Visible Property
off in Dialog editor.
i.e CDialog::Create(..) instead of CDialog::DoModal()
In OnInitDailog after cDialog::OnInitDialog()
call Shell_NotifyIcon
anuvk