visual basic 05 .net

Soldato
Joined
20 Aug 2004
Posts
3,115
Location
Bournemouth
visual basic 03 .net

Ok for uni I have just had to revert to the old old 03 .net edition instead of a decent version. And now I remember a lot of the coding is different. I have been going through loads of commands and cant find anything helpful online for this but its just a simple form load. I can close a form eaisly enough but I need to open the next one after thats done

so far its just:

close()

and I tried form2.show and open and load and every thing. but no joy.
 
Last edited:
Not quite sure what you mean by
I have just had to revert to the old old 05 .net edition instead of a decent version
VB.NET 2005 is the most recent version and most people would consider it decent.

Anyway, just create a variable to hold your form object and then show it

Code:
Dim f As form2 = New form2()
f.Show (or f.ShowDialog as appropriate)
 
Back
Top Bottom