INTERACT FORUM
Windows => Plug-in Development => Topic started by: Mirko on September 04, 2002, 01:07:30 am
-
Hi,
may a plugin be noticed, if it is disabled? Or is it simply unloaded (so I get the terminate event)?
If the user clicks on the plugin, I don't get an event for that, right? And if the user clicks on something else, so that the plugin is not displayed anymore, there is no event, either?
May I use clientwidth and clientheight to check, if the plugin is displayed or not? Then I could check in the resize-event...
Thanks for any information,
Mirko
-
Mirko
well yes and no.
what was found to work is detect Hide or Show if "Show" program is active if "Hide" the program is not.
-
I don't understand that :-/
What is hidden?
Thanks.
-
>>> RhinoBanga 08-30-2002 09:04:17 A.M.
>>> Just add these lines to your main control's code:
Private Sub UserControl_Hide()
MsgBox "Hide"
End Sub
Private Sub UserControl_Show()
MsgBox "Show"
End Sub