Is there one?
Or do i have to make one
Thanks
Printable View
Is there one?
Or do i have to make one
Thanks
How about using the Resize event and check if form state is vbminimized.
If so, then do your stuff.
VB Code:
Private Sub Form_Resize() If Me.WindowState = VBMinimized then 'do whatever it is you need to do end if End Sub
use the form resize event
What kind of event?
How and from where do you want the event called?
Perfect! Thanks for the solutiion. For the record, Im using it to control whether or not an ActiveX exe is visible.
(It sits over my form at runtime and is set to always on top, but of course i need to hide it if my app is not active!)
Thanks very very much