Matty:
You don't need to use the ShowWindow Api...
.. To "advanced"...
tobiaz:
All you need to do is put a timer on the form, set the interval or whatever...
In the plugin Initialize funtion, you just
code:
Load Form1
Or whatever you form name is...
If you timer is set to Enable during editing, it will be enabled as soon as you call Load Form1, if you set it to false you just call
code:
Form1.Timer1.Enabled = True
In the initialize function..
Or wherever you want it....
This means.. You don't need to show the form.. You just have to load it...
...
Simple as that...
...
The Showwindow Api can be used when you want to show a form without it Freezing the rest of Messenger...
...