Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Put something like this in the onclick() of the print button:I would like to have a report that prints the curent record displayed.
Private Sub cmdProforma_Click()
Dim stDocName As String
Dim stWhere As String
stDocName = "rprtProforma"
stWhere = "OperationsID=" & Me.operationsID
DoCmd.OpenReport "rprtProforma", acPreview, , stWhere
End Sub
Hpw can i have the report have subreports?