printing barcode

  • Thread starter Thread starter Saso Zagoranski
  • Start date Start date
S

Saso Zagoranski

Hi all!

Does anyone know how can I print a barcode to a normal printer? I have to
use code93...
I have seen an example of this where code39 is used...

printFont = new Font("Code39",18);

graphics.draw...(....,printFont,text);

is this it? I think it should be a bit more complicated than that :)

I probably need the Code93 font, right? Is there a place where I could get
it for free?

thank,
saso
 
Saso Zagoranski said:
Hi all!

Does anyone know how can I print a barcode to a normal printer? I have to
use code93...
I have seen an example of this where code39 is used...

printFont = new Font("Code39",18);

graphics.draw...(....,printFont,text);

is this it? I think it should be a bit more complicated than that :)

I probably need the Code93 font, right? Is there a place where I could get
it for free?

thank,
saso

I can't vouch for this site, but they seem to offer a free Code93 bar code
font: http://www.free-barcode-font.com/

There's a sample application on MSDN that illustrates how to print in C#:
http://msdn.microsoft.com/vcsharp/downloads/samples/23samples/default.aspx.
Look for PrintDocumentSample.exe.
 
Saso Zagoranski said:
Hi all!

Does anyone know how can I print a barcode to a normal printer? I have to
use code93...
I have seen an example of this where code39 is used...

printFont = new Font("Code39",18);

graphics.draw...(....,printFont,text);

is this it? I think it should be a bit more complicated than that :)

I probably need the Code93 font, right? Is there a place where I could get
it for free?

thank,
saso

Take a look at http://www.morovia.com/font/
 
Back
Top