Thanks for your time on this - much appreciated.
Private Sub PrintF_Click()
On Error GoTo Err_PrintF_Click
DoCmd.PrintOut
Exit_PrintF_Click:
Exit Sub
Err_PrintF_Click:
MsgBox err.Description
Resume Exit_PrintF_Click
End Sub
Private Sub Form_Open(Cancel As Integer)
' Print entire set of home group Main Forms
Dim Message, Title, Default, HomeGBox, HomeG As String
Dim dbsRV As Database
Dim qdfHomeG As QueryDef
Dim BlankRow As Integer
Dim rstStuds As DAO.Recordset
Dim rst1 As DAO.Recordset
Dim Tables(7) As String...
I have a complex form that draws data from several tables using DAO. I can print a single instance of the form from the file menu. I have now put the code behind the form into a loop that produces a separate page for multiple names. I cannot find a way to print the form each time it is populated...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.