Send Raw Data to ZPL Printer using Visual Basic (MS Access 2000)

前端 未结 4 1017
生来不讨喜
生来不讨喜 2021-01-28 05:57

This is all that I can find, none of them work.

Option Compare Database Option Explicit

  Private Type DOCINFO
      pDocName As String
      pOutputFile         


        
4条回答
  •  北海茫月
    2021-01-28 06:28

    if it is mapped to a parallel or com port, you can open that directly:

    open "LPT1:" For Output as #1
    ' or open "COM1:"
    print #1, "SomeData"
    Close #1
    

提交回复
热议问题