-
Hi. I wonder if anyone can help. One of my projects at the moment is making a little task reminder, that pops up at certain times telling me what to do. I want to have one form containing the pop ups, but I want the program when it is being executed make another instance of this form. Is this possible?
-
Sure you can add this code to a commandbutton called Command1 and add a form called frmPopup
Example:
Code:
Private Sub Command1_Click()
Dim frmNew As Form
Set frmNew = New frmPopup
frmNew.Show
End Sub
------------------
Vincent van den Braken
EMail: [email protected]
ICQ: 15440110
Homepage: http://www.azzmodan.demon.nl
-