Running 2 forms in 2 different displays in VB program
-
Hello to everyone! I have a project to do in VB. My problem is, that this program is divided to 2 purposes - 1-operator's entry form of some data, 2-displaying this data in another form in a second display (both displays are connected to 1 comuter). How can I display 2 different forms running at the same time in one program? Thank you all in advance.
-
Hello to everyone! I have a project to do in VB. My problem is, that this program is divided to 2 purposes - 1-operator's entry form of some data, 2-displaying this data in another form in a second display (both displays are connected to 1 comuter). How can I display 2 different forms running at the same time in one program? Thank you all in advance.
If you want to create a second window, or form, then you will need to do something like this. ' Declare the form variable Dim secondForm as Form1 ' Create the form object Set secondForm = New Form1 ' Set the form to visible. secondForm.Show
Build a man a fire, and he will be warm for a day
Light a man on fire, and he will be warm for the rest of his life!