New Window,
I want to press a button and the same window appears again aswell as the current one.
so on form1 there is a button, when you press the button it loads up a new form1 aswell as the current one
Printable View
New Window,
I want to press a button and the same window appears again aswell as the current one.
so on form1 there is a button, when you press the button it loads up a new form1 aswell as the current one
This might be what you are looking for.
VB Code:
cmdButton_Click() Dim newWindow As Form Set newWindow = New frmOldForm newWindow.Show
HTH
Thanks Dude