Quote:
> In VB6 a usercontrol had a .UserMode property, which could be
> used to process controls differently in design-mode as opposed
> to run-mode. What would be the equivalent feature in VB.Net?
Now it's the DesignMode property, inherited from component:
System.ComponentModel.Component.DesignMode
Armin