VB, Windows 5.0 Compact: Multiple Forms

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

Hi all,

I'm making a program for the Smart Device (Compact .NET Framework) and I
noticed the "MY" object is completely missing. I wonder how to open a 2nd
form. The app is supposed to work like a wizard: Opening window, entry
window, final window. So the Next button should close the current window and
open the next window... Can't figure out how to do it though.

Hope to hear some suggestions,
Martin
 
Martin said:
I'm making a program for the Smart Device (Compact .NET Framework) and
I noticed the "MY" object is completely missing. I wonder how to open
a 2nd form. The app is supposed to work like a wizard: Opening window,
entry window, final window. So the Next button should close the
current window and open the next window... Can't figure out how to do
it though.


Have you tried:

Dim _MyForm as new MyForm
_MyForm.Show (or .ShowDialog)
 
Back
Top