Hi
Im opening a form as a class - but I would like to make it open in dialog mode. Mainly because I need to user to make a selection from the form before the code in the main form continues to execute.
Any ideas ?
Heres my code
Dim clsPrintList As Form_frmPrintList
Set clsPrintList = New Form_frmPrintList
With clsPrintList
.refno = Me.fileid
.Form_LoadFiles
.PTypeID = 1
.Form_Show <--- i want to stop here and wait for the use to select something from this form.
End With
Missy Ed - Bolton, UK
Im opening a form as a class - but I would like to make it open in dialog mode. Mainly because I need to user to make a selection from the form before the code in the main form continues to execute.
Any ideas ?
Heres my code
Dim clsPrintList As Form_frmPrintList
Set clsPrintList = New Form_frmPrintList
With clsPrintList
.refno = Me.fileid
.Form_LoadFiles
.PTypeID = 1
.Form_Show <--- i want to stop here and wait for the use to select something from this form.
End With
Missy Ed - Bolton, UK