open same form multi times

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I am using a mdi form and a treeview with a toolbar controls. On the tool
bar I have a button to open a form that had IE control on it. This form I
want to be able open multiple times. How can i do this?
Brian
 
Brian Shafer said:
I am using a mdi form and a treeview with a toolbar controls. On the tool
bar I have a button to open a form that had IE control on it. This form I
want to be able open multiple times.

\\\
Dim f As New FooForm()
f.MdiParent = Me
f.Show()
///
 
Back
Top