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.