INTERACT FORUM

Windows => Plug-in Development => Topic started by: Mirko on September 04, 2002, 01:07:30 am

Title: Plugin status
Post 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
Title: RE:Plugin status
Post by: KingSparta on September 04, 2002, 05:18:10 am
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.
Title: RE:Plugin status
Post by: Mirko on September 04, 2002, 07:46:36 am
I don't understand that :-/

What is hidden?

Thanks.
Title: RE:Plugin status
Post by: KingSparta on September 04, 2002, 12:51:15 pm
>>> 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