Z
Zzzbla
Hello,
I'm writing a reminders project and I've been having some difficulties.
It starts with a simple class that contains a timer and NotifyIcon, where
the main function initializes the timer followed by Application.Run();
Whenever the timer figures out it has to do something (pop a reminder) -
it creates an instance of the reminder window and calls the Show() method
of that form.
Now - what happens is that the form appears in the taskbar, but when you
click it, it stops responding. When I use ShowDialog instead, it runs OK.
Why can't I just show the form? Should I run it in a new thread?
Thanks in advance!
I'm writing a reminders project and I've been having some difficulties.
It starts with a simple class that contains a timer and NotifyIcon, where
the main function initializes the timer followed by Application.Run();
Whenever the timer figures out it has to do something (pop a reminder) -
it creates an instance of the reminder window and calls the Show() method
of that form.
Now - what happens is that the form appears in the taskbar, but when you
click it, it stops responding. When I use ShowDialog instead, it runs OK.
Why can't I just show the form? Should I run it in a new thread?
Thanks in advance!