L
LA Lawyer
I want to open a form (which I know how to do) and then (1) change some of
its default data and (2) run a procedure in that form. The procedure is
already a named procedure in the form to be opened.
How is that done?
This is what I have already:
DoCmd.OpenForm "LetterOptionsForm", , , "PersonID=" & PersonID
With Screen.ActiveForm
!POSSigner.Value = UserFirstName
!FaxOnly.Value = True
' Here I want to run the procedure called "DoAFax"
End With
its default data and (2) run a procedure in that form. The procedure is
already a named procedure in the form to be opened.
How is that done?
This is what I have already:
DoCmd.OpenForm "LetterOptionsForm", , , "PersonID=" & PersonID
With Screen.ActiveForm
!POSSigner.Value = UserFirstName
!FaxOnly.Value = True
' Here I want to run the procedure called "DoAFax"
End With