Common menu system for all forms

P

pramodrenikindi

Hi all,

Need urgently, I am doing a pocket pc application in vb.net and sql
server. In the pocket pc application there are three forms . form1,
form2 , form3. The menu is on form1 and when you click the menu item on
form1 form 2 is opened on form1 with menu at bottom of form2 . that is
overlapping form1 and form2 . This logic is working .
The is code i am using in form1 to open form2 on form1.

form2 = New form2
Me.Controls.Add(Me.form2 )
form2 .BringToFront()
form2 .Visible = True

There is a button in form2 when we click on that it opens form3 but it
should open on form1 . That is overlapping form3 and form1 . I mean a
common menu system for all the forms. How to write code in form2 for
form3 to open on form1.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top