Is there any way to programmtically remove controls from a windows form at runtime with VB? I haven't done any VB development since helping friends in college (a long time ago). I have found how to ...
Everything is an object in the marvelous world of managed code, from simple entities, such as numbers and strings, to complex UI objects, such as controls and forms. As a matter of fact, a form is ...
This is a little more informative, but you still can't tell what's really going on, because it's magic. If you could peer inside the My.Forms feature, you might find Visual Basic adding parallel form ...
which events are more appropriate for putting instantiation (set foo = new object) and desctruction (set foo = nothing) commands? initialize and terminate or load and unload?<BR><BR>this would be for ...