Question : Open multiple instance of a form

Hi,
I am trying to use a form as messagebox as I need to set its position.
I an displaying 5 messagebox at a time how can I create multiple instance of a form in that case.
Cheers

Answer : Open multiple instance of a form

Dim f As New frmMessageBox 'or whatever it names
f.Left = 100 'the left you want to show it
f.Top = 100 'same with the top
f.Show 'to show non-modal, or f.ShowDialog() to show modal

You can repeat the above procedure as many times as you need. You will get a new form each time.

Hope that helps.
Random Solutions  
 
programming4us programming4us