I'm trying to make a class mod where i can have multiple copies of one form. this is what i have so far.
any suggestions?
Code:
Public PCForm As New frmPC, strName As String Private Sub Class_Initialize() Set PCForm = New frmPC Load PCForm PCForm.Show PCForm.txtPCName.Text = strName End Sub Private Sub Class_Terminate() Set PCForm = Nothing End Sub
Comment