We have developed a form (not a report) which has personal information on it and a sub-form which then shows all the training this person has had.
When we put a print button on the form with code to print the form, the sub-form is dropped off. The VBA coding is simple:
How do we correct this?
Thanks in advance.
When we put a print button on the form with code to print the form, the sub-form is dropped off. The VBA coding is simple:
Code:
Private Sub Print_Click()
DoCmd.PrintOut
End Sub
Thanks in advance.