Home All Groups Group Topic Archive Search About
Author
24 Jul 2006 3:04 PM
eSolTec, Inc. 501(c)(3)
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

Author
24 Jul 2006 3:33 PM
iwdu15
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

--
-iwdu15