Someone who knows where I find material to produce barcode fonts from within VB (VB6)?
And I also would like to know if there is some place on the web where I could download free barcode fonts (preferably Code39)
Printable View
Someone who knows where I find material to produce barcode fonts from within VB (VB6)?
And I also would like to know if there is some place on the web where I could download free barcode fonts (preferably Code39)
Last time I checked, you were still able to get free barcode fonts from:
http://www.adams1.com/pub/russadam/fonts.html
As for using them in VB, they are just like any other font, only you have to remember that with a barcode font, you need a start and end character. For barcode font "3 of 9" this start and end character is an "*", so a print command would look something like:
Hope this helps.Code:
Private Sub Command1_Click()
myString = "*121313212*"
Printer.Font.Name = "3 of 9"
Printer.Print
Printer.EndDoc
End Sub
Thank you!
And what about EAN13 barcode?