hi, great to see a beginner here. calling one form from another is very simple
Dim frm as new frmForm2
then to show the form, you simply write:
frm.Show()
that it! very simple.
to access the other forms events, go to your code window and look at the
top. youl see two menus right above the code window. click these dropdown
menus and find whichever control you want, on the left, then pick which event
you want, on the right.
hope this helps

Signature
-iwdu15
Miro - 08 May 2006 04:27 GMT
Thank you very much.
I was going crazy. The books talk about
Dim frm as New form() and stuff like that but not how to show another form.
Thank you very much agian.
I will post a question about the events as a new Post.
I hope i can get good enough in vb to return the answers to vb net one day.
Miro
> hi, great to see a beginner here. calling one form from another is very
> simple
[quoted text clipped - 14 lines]
>
> hope this helps