Form by Form

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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
 
Back
Top