Syntax
| SQL.PrintHexCodeDocument(FileName, PrinterPath[, Copies])
| ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Description
| Opens a .TXT or .HEX document and then sends it directly to the specified printer path, using control codes sent directly to the printer.
Returns value TRUE on success, FALSE otherwise.
Syntax Hex specifications
| ||||||||||||||||
See Also
| |||||||||||||||||
Example
| Sub Main() Dim sFile As String Dim PrtPath As String PrtPath = "\\SERVER\HPLASE1" sFile = InputBox$("HexBestand:") If SQL.PintHexCodeDocument(sFile, PrtPath, 2) Then Debug.Print "In duplo afgedrukt!" End If End Sub | ||||||||||||||||