Dim stDocName As String
stDocName = "SupplierTbl03rpt"
DoCmd.OpenReport stDocName, acViewPreview, "", True
In a runtime version of a database I have the above code linked to a button on a form. Is it possible by altering or replacing the above code to make the system go into print setup instead of just printing the document?
stDocName = "SupplierTbl03rpt"
DoCmd.OpenReport stDocName, acViewPreview, "", True
In a runtime version of a database I have the above code linked to a button on a form. Is it possible by altering or replacing the above code to make the system go into print setup instead of just printing the document?