M
Mike
I might be doing this all wrong, but logically, this is all I can
figure out what to do:
I have this custom component property:
Public Shadows Property Visible() As Boolean
Get
return TrayIcon.Visible
End Get
Set(ByVal value As Boolean)
TrayIcon.Visible = value
End Set
End Property
which expose/shadows the Visible property of a NotifyIcon dropped in
the custom component.
What I need is to determine id when you are in the DESIGN-TIME editor
or RUN-TIME so I can control when the above property is set or not set.
Whether the above is wrong way or not, in general, is it possible to
detect when you are in design time vs run time?
thanks
--
figure out what to do:
I have this custom component property:
Public Shadows Property Visible() As Boolean
Get
return TrayIcon.Visible
End Get
Set(ByVal value As Boolean)
TrayIcon.Visible = value
End Set
End Property
which expose/shadows the Visible property of a NotifyIcon dropped in
the custom component.
What I need is to determine id when you are in the DESIGN-TIME editor
or RUN-TIME so I can control when the above property is set or not set.
Whether the above is wrong way or not, in general, is it possible to
detect when you are in design time vs run time?
thanks
--