Multiple versions of VBA Form

K

Karl E. Peterson

Peter said:
Is it possible to open multiple versions of the same VBA form? If so
how!!

Not sure what you mean by "multiple versions", but if that equates to
"multiple instances", sure!

Dim frm As MyForm
Dim i As Long

For i = 1 to 10
Set frm = New MyForm
frm.Show
Next i

Later... Karl
 
P

Peter R Hawkes

Thank you Karl, excellent!

Is there anyway of adding a Minimize / Maximise to the form and in so doing
show the form in the Taskbar?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top