Results 1 to 4 of 4

Thread: BARCODE FONTS !!

  1. #1

    Thread Starter
    Lively Member
    Join Date
    May 2000
    Posts
    74

    Question

    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)

  2. #2
    Hyperactive Member
    Join Date
    May 2000
    Location
    Or
    Posts
    316
    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.

  3. #3

    Thread Starter
    Lively Member
    Join Date
    May 2000
    Posts
    74
    Thank you!

  4. #4
    Member Penavin's Avatar
    Join Date
    Oct 2001
    Location
    Sisak, Croatia
    Posts
    42

    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
  •  



Click Here to Expand Forum to Full Width