I want to print a picture on Epson TM-J7100 by code with generic driver, not by a report.
Can someone help me with an example?
I want to print a picture on Epson TM-J7100 by code with generic driver, not by a report.
Can someone help me with an example?
Printer drivers and Access report objects are two different animals. Are you trying to send a .prn or .raw file to spool? You can select a specific printer that is installed on a machine using Application.Printer
Here is an example of .Printer from microsoft
Code:Dim prtFirst As Printer Set prtFirst = Application.Printers(0) With prtFirst MsgBox "Device name: " & .DeviceName & vbCr _ & "Driver name: " & .DriverName & vbCr _ & "Port: " & .Port End With