Results 1 to 2 of 2
  1. #1
    tonicm is offline Novice
    Windows 7 64bit Access 2010 32bit
    Join Date
    Mar 2014
    Posts
    1

    Question Print picture on TM-J7100


    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?

  2. #2
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    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

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 6
    Last Post: 03-01-2014, 07:07 AM
  2. Embed Invoice Print within Statement Print
    By EddieN1 in forum Reports
    Replies: 2
    Last Post: 11-16-2013, 10:38 PM
  3. Replies: 1
    Last Post: 12-03-2012, 03:15 PM
  4. Replies: 5
    Last Post: 10-26-2011, 02:59 PM
  5. Replies: 0
    Last Post: 02-22-2011, 05:04 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums