|
-
Aug 10th, 2000, 03:32 AM
#1
Thread Starter
Lively Member
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)
-
Aug 10th, 2000, 08:58 AM
#2
Hyperactive Member
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:
Code:
Private Sub Command1_Click()
myString = "*121313212*"
Printer.Font.Name = "3 of 9"
Printer.Print
Printer.EndDoc
End Sub
Hope this helps.
-
Aug 11th, 2000, 02:05 AM
#3
Thread Starter
Lively Member
-
Feb 13th, 2003, 07:29 AM
#4
Member
EAN13
And what about EAN13 barcode?
Penavin 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|