I am having difficulty finding the proper code to print to a network (non-default) printer.
I have it currently set to print on a default printer using this code (created in wizard):
This program is going to be accessed by multiple users throughout the plant and I need the form to be sent to only one printer.
This is being created in MS Access 2003. Thanks again guys!
I have it currently set to print on a default printer using this code (created in wizard):
Code:
Private Sub cmdPrint_Click()
On Error GoTo Err_cmdPrint_Click
Dim stDocName As String
stDocName = "frmPrint"
DoCmd.OpenReport stDocName, acNormal
This is being created in MS Access 2003. Thanks again guys!
Comment