Home All Groups Group Topic Archive Search About

Smart Device: Multiple Forms

Author
29 Dec 2006 11:09 AM
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

Author
29 Dec 2006 5:04 PM
Moayad Mardini
To open a form, declare it, change the its properties, then show it using
..Show()
Ex :
        Dim Frm2 As New Form2
        'Change its properties such as Frm2.Text = "Something"
        Frm2.Show()
--
Moayad Mardini,
MSDN Forums Moderator


Show quoteHide quote
"Martin" wrote:

> 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
>
>
>