Here's the deal: I have a form called frmMessage that I am putting into a collection called frmEmessage. Then I show the form that I just put into the collection. The problem is that when the newly added form is shown, it replaces the one before it. In other words, I need to have the forms in the collection that were already shown to stay on the screen. Any ideas?


Private Sub Command1_Click()
intemessagecount = intemessagecount + 1
frmEmessage.Add frmMessage, (Str(intemessagecount))
frmEmessage(intemessagecount).Show
End Sub