Form by Form

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • eSolTec, Inc. 501(c)(3)

    #1

    Form by Form

    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
  • iwdu15

    #2
    RE: Form by Form

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

    Private Sub btnNew_Click(.. .)

    Dim frm As New Form2

    frm.StartPositi on = FormStartPositi on.Manual
    frm.Left = Me.Left + Me.Width + 5
    frm.Show()

    End Sub

    --
    -iwdu15

    Comment

    Working...