hello,
can anyone tell me how to open two forms at once when you start the program but one has to be on the left of the main form and the same size can anyone help me please?
Printable View
hello,
can anyone tell me how to open two forms at once when you start the program but one has to be on the left of the main form and the same size can anyone help me please?
in the Form1's Load event, put:
vb Code:
Form2.Show Form2.Top = Form1.Top Form2.Left = Form1.Left - Form2.Width