How to get if is Runtime or Design Mode??

  • Thread starter Thread starter Ale K.
  • Start date Start date
A

Ale K.

There is any Function to check if the program is in runtime or design mode,
so i can avoid some of my usercontrols throwing me some errors while i'm on
design mode??

Thanks.
Alex.
 
Hello,

Ale K. said:
There is any Function to check if the program is in runtime
or design mode, so i can avoid some of my usercontrols
throwing me some errors while i'm on design mode??

Inside the usercontrol:

\\\
If Me.DesignMode Then
...
End If
///
 
Back
Top