Opening a form - easy question
-
I'm new to programming so please don't laugh when you see my question. What code do I use to open a form in a project when I click a button another form? It's got to be something really simple and in Access I've used "DoCmd.OpenForm" but apprently it doesn't work in VB.Net. Thanks for any help! Nathan
-
I'm new to programming so please don't laugh when you see my question. What code do I use to open a form in a project when I click a button another form? It's got to be something really simple and in Access I've used "DoCmd.OpenForm" but apprently it doesn't work in VB.Net. Thanks for any help! Nathan
Dim newForm as Form1 = New Form1
newForm.Show()
Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.