printing barcode

  • Thread starter Saso Zagoranski
  • 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
 
B

Bret Mulvey [MS]

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.
 
M

MontereySoft

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/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top