Home All Groups Group Topic Archive Search About
Author
22 Oct 2005 12:07 AM
Joe O
Hi all,

Anyone know of website/URL where I can download free true type (barcode)
font and or tutorial on how to
use them in VB6 app and or make them show in my windows font list. I will
appreciate any help.

Thank in advance

Author
22 Oct 2005 12:24 AM
MikeD
"Joe O" <jp3BlessNoSpam@hotmail.com> wrote in message
news:ePE$Szp1FHA.3816@TK2MSFTNGP14.phx.gbl...
> Hi all,
>
> Anyone know of website/URL where I can download free true type (barcode)
> font and or tutorial on how to
> use them in VB6 app and or make them show in my windows font list. I will
> appreciate any help.


Well once you get the font, using it would be the same as any other font. As
far as making it show in a font list, it's needs installed (basically just
copy it to the Fonts folder). Once you do that, it's available in any app
(that lets you choose fonts).

About a year ago I worked at a place that used a barcode font. Can't
remember where they got it from, but I know it was commercial (fonts are
basically treated as software) and they paid several hundred dollars for it.
I don't know if there are free barcode fonts or not.

Try here:

http://www.free-fonts.com/

I just did a search from that site on "barcode" and got a few hits. Looks
like there's a few free ones. I guess my previous employer was pretty stupid
(actually, there's no "guessing" about it).

--
Mike
Microsoft MVP Visual Basic
Author
22 Oct 2005 12:56 AM
Joe O
Thanks for the tip Mike. I will explore the site.

Show quoteHide quote
"MikeD" <nob***@nowhere.edu> wrote in message
news:u6xYA8p1FHA.268@TK2MSFTNGP09.phx.gbl...
>
> "Joe O" <jp3BlessNoSpam@hotmail.com> wrote in message
> news:ePE$Szp1FHA.3816@TK2MSFTNGP14.phx.gbl...
> > Hi all,
> >
> > Anyone know of website/URL where I can download free true type (barcode)
> > font and or tutorial on how to
> > use them in VB6 app and or make them show in my windows font list. I
will
> > appreciate any help.
>
>
> Well once you get the font, using it would be the same as any other font.
As
> far as making it show in a font list, it's needs installed (basically just
> copy it to the Fonts folder). Once you do that, it's available in any app
> (that lets you choose fonts).
>
> About a year ago I worked at a place that used a barcode font. Can't
> remember where they got it from, but I know it was commercial (fonts are
> basically treated as software) and they paid several hundred dollars for
it.
> I don't know if there are free barcode fonts or not.
>
> Try here:
>
> http://www.free-fonts.com/
>
> I just did a search from that site on "barcode" and got a few hits. Looks
> like there's a few free ones. I guess my previous employer was pretty
stupid
> (actually, there's no "guessing" about it).
>
> --
> Mike
> Microsoft MVP Visual Basic
>
>
>
Author
22 Oct 2005 8:06 AM
Kasia Muniak
U¿ytkownik "Joe O" <jp3BlessNoSpam@hotmail.com> napisa³ w wiadomo¶ci
news:ePE$Szp1FHA.3816@TK2MSFTNGP14.phx.gbl...
> Hi all,
>
> Anyone know of website/URL where I can download free true type
(barcode)
> font and or tutorial on how to
> use them in VB6 app and or make them show in my windows font list. I
will
> appreciate any help.
>
> Thank in advance

Try this (free stuff):
http://sourceforge.net/projects/winbarcodes/

(Barcode fonts, encoders and VB macros for Windows.
Support PDF417, EAN13, code128, EAN128, 3 of 9 and 2 of 5 interleaved
barcodes.)

Kasia Muniak
Author
22 Oct 2005 2:48 PM
Veign
Another option is to 'draw' your own:
http://www.veign.com/vrc_codeview.asp?type=app&id=127

I would still recommend the TrueType font way but wanted to show you there
is another option.

--
Chris Hanscom - Microsoft MVP (VB)
Veign's Resource Center
http://www.veign.com/vrc_main.asp
Veign's Blog
http://www.veign.com/blog
--


Show quoteHide quote
"Joe O" <jp3BlessNoSpam@hotmail.com> wrote in message
news:ePE$Szp1FHA.3816@TK2MSFTNGP14.phx.gbl...
> Hi all,
>
> Anyone know of website/URL where I can download free true type (barcode)
> font and or tutorial on how to
> use them in VB6 app and or make them show in my windows font list. I will
> appreciate any help.
>
> Thank in advance
>
>
Author
22 Oct 2005 3:24 PM
Mike Williams
"Veign" <NOSPAMinveign@veign.com> wrote in message
news:%23Ncw$gx1FHA.3180@TK2MSFTNGP14.phx.gbl...

> Another option is to 'draw' your own:
> http://www.veign.com/vrc_codeview.asp?type=app&id=127
> I would still recommend the TrueType font way but wanted
> to show you there is another option.

Actually I'd go the other way and say that drawing your own barcodes is
*better* than using True Type fonts (although using fonts is easier, of
course). The best thing about drawing your own is that you can optimise the
drawing to exactly suit the resolution of the currently selected output
device (something that TTF barcode fonts cannot do). I've written VB code
(purely for test pusposes) to draw UPC (Universal Product Code) barcodes in
this "matched to the output device resolution" way, and I've posted it
before (can't remember whether it was on this newsgroup or on clbvm). Post
again if you're interested and I'll repost the code.

Mike
Author
22 Oct 2005 3:42 PM
Rick Rothstein [MVP - Visual Basic]
> I've written VB code (purely for test pusposes) to draw UPC
> (Universal Product Code) barcodes in this "matched to the
> output device resolution" way, and I've posted it before (can't
> remember whether it was on this newsgroup or on clbvm).

Perhaps this one...

http://groups.google.com/group/microsoft.public.vb.general.discussion/browse_frm/thread/d9576f645b0eb2d3/4ace588fb1eb8868?lnk=st&q=%22mike+williams%22+upc&rnum=3#4ace588fb1eb8868

Rick
Author
22 Oct 2005 8:09 PM
Joe O
Nice info... Thanks all. I appreciate the help



"Rick Rothstein [MVP - Visual Basic]" <rickNOSPAMnews@NOSPAMcomcast.net>
wrote in message news:e3FBp8x1FHA.736@tk2msftngp13.phx.gbl...
> > I've written VB code (purely for test pusposes) to draw UPC
> > (Universal Product Code) barcodes in this "matched to the
> > output device resolution" way, and I've posted it before (can't
> > remember whether it was on this newsgroup or on clbvm).
>
> Perhaps this one...
>
>
http://groups.google.com/group/microsoft.public.vb.general.discussion/browse_frm/thread/d9576f645b0eb2d3/4ace588fb1eb8868?lnk=st&q=%22mike+williams%22+upc&rnum=3#4ace588fb1eb8868
Show quoteHide quote
>
> Rick
>
>
Author
31 Oct 2005 6:31 PM
Harold Wright
Download this free 3 of 9 true type font here:
http://www.tucows.com/get/225364_95710
Just unzip it and copy the TTF file to the font directory in Windows XP.
Note: 3 of 9 codes start and stop with an asterisk so ass these to the
beginning and end of your code.





*** Sent via Developersdex http://www.developersdex.com ***
Author
31 Oct 2005 8:59 PM
Joe O
Thanks Harold
Show quoteHide quote
"Harold Wright" <harold.wri***@dodgeit.com> wrote in message
news:%234fCClk3FHA.700@TK2MSFTNGP15.phx.gbl...
> Download this free 3 of 9 true type font here:
> http://www.tucows.com/get/225364_95710
> Just unzip it and copy the TTF file to the font directory in Windows XP.
> Note: 3 of 9 codes start and stop with an asterisk so ass these to the
> beginning and end of your code.
>
>
>
>
>
> *** Sent via Developersdex http://www.developersdex.com ***
Author
2 Nov 2005 3:18 PM
Thomas Lutz
There are plenty of places where you can download free bar code fonts
including www.barcode-1.com
You get what you pay for however and bar code fonts are not only
difficult to work with, they also produce very poor quality bar codes
that can print differently on different printers.
If you want something that is extremely easy to use as well as
guaranteed to produce extremely high quality bar codes no matter what
printer you print to then you would be better off using a bar code
ActiveX control that creates bar codes as Windows Metafile images.
The best on on the market is available from TAL Technologies and you
can download a demo from the following web page:
http://www.taltech.com/products/activex_barcodes.html
The demo contains a sample VB6 program that shows how to use it in a
VB program.


On Sat, 22 Oct 2005 11:42:06 -0400, "Rick Rothstein [MVP - Visual
Basic]" <rickNOSPAMnews@NOSPAMcomcast.net> wrote:

Show quoteHide quote
>> I've written VB code (purely for test pusposes) to draw UPC
>> (Universal Product Code) barcodes in this "matched to the
>> output device resolution" way, and I've posted it before (can't
>> remember whether it was on this newsgroup or on clbvm).
>
>Perhaps this one...
>
>http://groups.google.com/group/microsoft.public.vb.general.discussion/browse_frm/thread/d9576f645b0eb2d3/4ace588fb1eb8868?lnk=st&q=%22mike+williams%22+upc&rnum=3#4ace588fb1eb8868
>
>Rick
>
Author
2 Nov 2005 5:34 PM
Joe O
Thanks for the info Tom

Show quoteHide quote
"Thomas Lutz" <t**@taltech.com> wrote in message
news:lulhm1ln3cp53vd7b9c22lmrqj929r430a@4ax.com...
> There are plenty of places where you can download free bar code fonts
> including www.barcode-1.com
> You get what you pay for however and bar code fonts are not only
> difficult to work with, they also produce very poor quality bar codes
> that can print differently on different printers.
> If you want something that is extremely easy to use as well as
> guaranteed to produce extremely high quality bar codes no matter what
> printer you print to then you would be better off using a bar code
> ActiveX control that creates bar codes as Windows Metafile images.
> The best on on the market is available from TAL Technologies and you
> can download a demo from the following web page:
> http://www.taltech.com/products/activex_barcodes.html
> The demo contains a sample VB6 program that shows how to use it in a
> VB program.
>
>
> On Sat, 22 Oct 2005 11:42:06 -0400, "Rick Rothstein [MVP - Visual
> Basic]" <rickNOSPAMnews@NOSPAMcomcast.net> wrote:
>
> >> I've written VB code (purely for test pusposes) to draw UPC
> >> (Universal Product Code) barcodes in this "matched to the
> >> output device resolution" way, and I've posted it before (can't
> >> remember whether it was on this newsgroup or on clbvm).
> >
> >Perhaps this one...
> >
>
>http://groups.google.com/group/microsoft.public.vb.general.discussion/brows
e_frm/thread/d9576f645b0eb2d3/4ace588fb1eb8868?lnk=st&q=%22mike+williams%22+
upc&rnum=3#4ace588fb1eb8868
Show quoteHide quote
> >
> >Rick
> >
>