Link to home
Start Free TrialLog in
Avatar of Gunit2507
Gunit2507

asked on

Multiple Windows

If I have a form I wanted displayed at the same time, what is the best way of doing that?
Avatar of Nandakumar Sakthivel
Nandakumar Sakthivel
Flag of United States of America image

What do you want to display at the same time ?

Thanks,
Nanda
ASKER CERTIFIED SOLUTION
Avatar of bramsquad
bramsquad
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Naveen Swamy
Naveen Swamy

one should be clear while asking the questions

Avatar of Gunit2507

ASKER

I have a dialogform, that stores individual data record information. Whenever a record is double clicked on a main form I want "THIS" dialog form to display... Although it would be possible i need to display the same form more then once at the same time for diffrent records.
will form.show will not work for this condition

Nanda
comment from bramsquad must work

Dim form2 As New Form2
form2.Show()

you can many instances of the form

Dim form3 As New Form2
form3.Show()

Dim form4 As New Form2
form4.Show()

etc