Form by Form

G

Guest

Thank you in advance for any and all assistance.

I have multiple forms, various sizes. I would like to open a form beside the
currently open form to the right of it. Can someone point me to code to do
this?

Michael
 
G

Guest

sure, in say a button click, if thats how you show the form

Private Sub btnNew_Click(...)

Dim frm As New Form2

frm.StartPosition = FormStartPosition.Manual
frm.Left = Me.Left + Me.Width + 5
frm.Show()

End Sub
 

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