Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Command13_Click()
Dim labeltoPrint, BatFile As String
labeltoPrint = "C:\ReelLabel.txt"
BatFile = "C:\PrintReelLabel.bat"
Open labeltoPrint For Output As #1
Print #1, "Q305,019"
Print #1, "B29,102,0,1,2,6,41,B," & Chr(34) & Me!txtDateCode & Chr(34)
Print #1, "A29,88,0,1,1,1,N," & Chr(34) & "DateCode" & Chr(34)
Print #1, "B243,229,0,1,2,6,41,B," & Chr(34) & Me!Barcode & Chr(34)
Print #1, "A388,166,0,2,1,2,N," & Chr(34) & "Ko Depth = " & Me!DDIM
Print #1, "A631,11,0,1,1,1,N," & Chr$(34) & "Serial#" & Chr(34)
Print #1, "A29,16,0,1,1,1,N," & Chr$(34) & "PartNumber" & Chr(34)
Print #1, "A29,31,0,2,3,3,N," & Chr$(34) & Me.ProductName & Chr(34)
Print #1, "B631,26,0,2,2,6,37,B," & Chr$(34) & Me.txtSerial & Chr(34)
Print #1, "A29,31,0,2,3,2,N" & Chr$(34) & "Barcode" & Chr$(34)
Print #1, "A654,113,0,1,1,1,N," & Chr$(34) & "Bin" & Chr$(34)
Print #1, "A656,128,0,2,2,2,N," & Chr$(34) & Me.Bin & Chr$(34)
Print #1, "P1" ænote number of labels to print put P3 and you get 3 labels
Close #1
Dim retval
' debug.print BatFile
retval = Shell(BatFile, vbMinimizedFocus)
Copy C:\ReelLabel.txt LPT1:
pause