Hi,

I saw a reply that LaVolpe made showing how to create a new form dynamically with the following code:

Code:
  Dim newForm As Form
  Set newForm = New frmTemplate
  ' now newForm is a new instance of frmTemplate
This code works fine but I have a question. The form created is named newForm. Is there any way I can assign my own name to the form such as newForm1, newForm2, etc. for each form that it creates?

Thanks!