MDI Forms, and just plain showing any form, kinda confuses me in vb.net. In vb6, you can just say unload formname. Now, to unload a form (say, form2), from form1, you need to:
dim form2b as new form2
form2b.show
form2b.close
But, that only works in a sub. Is there anyway to make these work globally throughout the full app? And, how would you do this for the first form that loads (how do you close the first form that loads when being in a sub on another form)?
TIA
