"Nicola" <Nicola@discussions.microsoft.com> schrieb:
> I'm building a custom control and I want to set a property to a specific
> value if I'm at DesignTime and to another different value if I'm at
> RunTime.
Inside the usercontrol/form:
\\\
If Me.DesignMode Then
...
Else
...
End If
///

Signature
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/
Nicola - 17 Dec 2004 22:55 GMT
Many thanks...
nq
> "Nicola" <Nicola@discussions.microsoft.com> schrieb:
> > I'm building a custom control and I want to set a property to a specific
[quoted text clipped - 10 lines]
> End If
> ///