In Windows Forms (Vb.net) how can I access the properties without instance (new) ?
Form1.Property = "" ??? the property deceleration is not static? what is called this way of deceleration?
While you can't access Class1.Property! Thanks
VB.Net does some magic to allow you to pretend that forms don't have instances.
It creates a hidden shared instance, and converts static calls to instance methods (eg, Form1.Show()) into instance calls on this shared instance.
This is done for VB6 compatibility and should be avoided.
Form1.HiddenInstance.prop. It has nothing to do with nay instances that you create.Class1 As New Class1 variable.