473,782 Members | 2,505 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

barcode active-X

Hello,

I'm setting up a barcode system for a storage-database. Now I'm looking
for a free (cheap) solution to print barcodes using reports.

I'll have to show the barcode to the screen before printing (wasn't my
decision). I found two possibilities

- using tt-fonts
- using an active-x-control

Do you have experience with that? As the database is for commercial use,
I can't use one of those "for-private-use-free"-solutions. And as it is
too small I can't afford to pay much.

thank you,

Lutz
Nov 13 '05 #1
11 7167
Depending on the kind of barcode you need to create, there are some free
truetype fonts out there. Try googling barcode freeware font -- you'll get
several basic ones, e.g.
http://www.squaregear.net/fonts/free3of9.shtml

There's a list at

http://www.barcode-1.net/pub/russadam/fonts.html

"Lutz" <ne**********@s pamgourmet.com> wrote in message
news:da******** **@online.de...
Hello,

I'm setting up a barcode system for a storage-database. Now I'm looking
for a free (cheap) solution to print barcodes using reports.

I'll have to show the barcode to the screen before printing (wasn't my
decision). I found two possibilities

- using tt-fonts
- using an active-x-control

Do you have experience with that? As the database is for commercial use, I
can't use one of those "for-private-use-free"-solutions. And as it is too
small I can't afford to pay much.

thank you,

Lutz

Nov 13 '05 #2
We use barcode fonts and, with a decent printer, you should be able to
print scannable barcodes. We found we needed to 'frame' the barcode,
though, with asterisks for it to print properly:

="*" & Left([SerialNumber],15) & "*"

Hope this helps!

Howard

Nov 13 '05 #3
Hi Bruce,

thanx for your quick reply. I tried your font 39 and it did a fine job.
But I'm forced to use Code128 so I'll try a font of your enclosed link.

As you can imagine i googled before posting, but I tried to get german
results.

Thank you,
Lutz

Bruce Rusk schrieb:
Depending on the kind of barcode you need to create, there are some free
truetype fonts out there. Try googling barcode freeware font -- you'll get
several basic ones, e.g.
http://www.squaregear.net/fonts/free3of9.shtml

There's a list at

http://www.barcode-1.net/pub/russadam/fonts.html

"Lutz" <ne**********@s pamgourmet.com> wrote in message
news:da******** **@online.de...
Hello,

I'm setting up a barcode system for a storage-database. Now I'm looking
for a free (cheap) solution to print barcodes using reports.

I'll have to show the barcode to the screen before printing (wasn't my
decision). I found two possibilities

- using tt-fonts
- using an active-x-control

Do you have experience with that? As the database is for commercial use, I
can't use one of those "for-private-use-free"-solutions. And as it is too
small I can't afford to pay much.

thank you,

Lutz


Nov 13 '05 #4
Hi Howard,

which kind of code are you using. I forgot to mention, that I'm looking
for code 128.

I tried your example with a code 39-font and it worked fine.

Thank you,
Lutz

Howard Brody schrieb:
We use barcode fonts and, with a decent printer, you should be able to
print scannable barcodes. We found we needed to 'frame' the barcode,
though, with asterisks for it to print properly:

="*" & Left([SerialNumber],15) & "*"

Hope this helps!

Howard

Nov 13 '05 #5
Lutz <ne**********@s pamgourmet.com> wrote in news:da******** **@online.de:
Hello,

I'm setting up a barcode system for a storage-database. Now I'm looking
for a free (cheap) solution to print barcodes using reports.

I'll have to show the barcode to the screen before printing (wasn't my
decision). I found two possibilities

- using tt-fonts
- using an active-x-control

Do you have experience with that? As the database is for commercial use,
I can't use one of those "for-private-use-free"-solutions. And as it is
too small I can't afford to pay much.

thank you,

Lutz


I have used TBarCode by Tec-It for various applications:

http://www.tec-it.co.at

It costs some (USD 102 for the ActiveX/DLL version you can use) but is very
versatile and works perfect in all Windows apps.
Nov 13 '05 #6
Lutz <ne**********@s pamgourmet.com> wrote in
news:da******** **@online.de:
I'm setting up a barcode system for a storage-database. Now I'm
looking for a free (cheap) solution to print barcodes using
reports.

I'll have to show the barcode to the screen before printing
(wasn't my decision). I found two possibilities

- using tt-fonts
- using an active-x-control

Do you have experience with that? As the database is for
commercial use, I can't use one of those
"for-private-use-free"-solutions. And as it is too small I can't
afford to pay much.


I fail to comprehend any reason why barcoding should require an
ActiveX control.

Bar codes encode data. They are just a font.

All you need is to know the appropriate format for the data and a
copy of the appropriate font.

There are lots of free Code39 fonts, though they aren't all equally
usable (there are differents in the encoding of spaces, in vertical
size and so forth).

I don't know about other font formats. I have not seen any terribly
expensive barcode fonts in any format, so it shouldn't be a very big
deal to acquire a usable font in the appropriate format.

Keep in mind that if the barcode data is going to someone else, you
need to round-trip test it to make sure that everybody is happy. I
once had a disastrous situation with a client whose mailing house
was run by phenomenally stupid people who couldn't handle the
barcoded data we were sending them, because we were doing a custom
checksum. Their printing software generated its own checksums (in a
format I didn't know how to calculate), and so was screwing up the
data I provided them. They couldn't quite grasp the idea that they
should just ignore their barcoding software and simply print out my
barcode field like any other data field, and just choose an
appropriate font.

Gad, those people were stupid -- and they were IN THE BUSINESS.

If no outsiders are involved, though, you don't have to worry about
that kind of thing.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #7
Dodo <dodo2u@-takethisNOSPAMo ut-freemail.nl> wrote in
news:Xn******** *************** *******@130.133 .1.4:
I have used TBarCode by Tec-It for various applications:

http://www.tec-it.co.at

It costs some (USD 102 for the ActiveX/DLL version you can use)
but is very versatile and works perfect in all Windows apps.


Would someone explain to me what the hell you need an ActiveX
control for?

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #8
"David W. Fenton" <dX********@bwa y.net.invalid> wrote in
news:Xn******** *************** ***********@24. 168.128.86:
Keep in mind that if the barcode data is going to someone else, you
need to round-trip test it to make sure that everybody is happy. I
once had a disastrous situation with a client whose mailing house
was run by phenomenally stupid people who couldn't handle the
barcoded data we were sending them, because we were doing a custom
checksum. Their printing software generated its own checksums (in a
format I didn't know how to calculate), and so was screwing up the
data I provided them. They couldn't quite grasp the idea that they
should just ignore their barcoding software and simply print out my
barcode field like any other data field, and just choose an
appropriate font.

Gad, those people were stupid -- and they were IN THE BUSINESS.

If no outsiders are involved, though, you don't have to worry about
that kind of thing.


Outsiders? Where the hell do you live?

Each and every barcode knows its own standardization .
For e.g. EAN-13 barcodes (never heard of?) the control digit is
calculated through a quite complicated formula. I know because I
implemented it for checking purposes in an Excel worksheet.

Probably such control digit calculations apply to other formats as well,
even your UPC codes?

So, if you accuse certain people of being stupid you just express your
failure to understand different barcoding principles around the world.

Talking about stupid . . .
Nov 13 '05 #9
Dodo wrote:
So, if you accuse certain people of being stupid you just express your
failure to understand different barcoding principles around the world.

Talking about stupid . . .


I agree with David - using an activeX control for something that is
really just a font with appropriate delimiters is, if not stupid, then
extreme overkill.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Whatcha doin?" - Ditto "TIM-MAY!!" - Me
Nov 13 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5308
by: Tom Turner | last post by:
Here's the background on my situation. The question follows --- We have 600 units of mail going from our business to various Post Offices every morning. Every unit is accompanied by a paper Verification form which is signed and dated by a postal employee and returned to our office as proof of delivery. The Verification contains a 24 character barcode which holds a non-unique 5 digit postal zip code at pos 5-9, and a unique 10- digit...
8
6417
by: DS | last post by:
Does anyone know anything about barcodes in Access. I don't want to create them in Access. I merely want to scan whats already been created. I need to scan Liquor bottles. I have the scanner hooked up. Any help is appreciated, Thanks DS
4
2124
by: | last post by:
Hi all, we have a need to barcode encode and display a record identifier (number) both in html in the browser and through fdf in adobe acrobat in realtime. Is this possible? Can anyone make any recommendations on software to do this? thanks!
4
4530
by: teddysnips | last post by:
I posted yesterday about a project I'm involved in to build a login application using a barcode scanner. I've solved most of the problems, but one remains. The client want to disable keyboard input (except at some remote sites where there won't be a scanner). The session "knows" whether that site should be keyboard enabled, but unfortunately the output from the scanner is in the form of keypresses! So any attempt to capture and...
3
10699
by: steve | last post by:
Hi All I need to write a program to read input from barcode scanner. The program is for a gym and needs to detect when a card is scanned regardless of which program is currently running ont he computer. e.g the operator might be typing a letter and a member swipes his card. I am convinced I need to write the card reader section as a Windows Service, so it is active always?
5
5430
by: neilphan | last post by:
Hi all, I have an application that uses input from a barcode reader via a USB port. My application works fine only if the application HAS FOCUS. If the user opens up another application (not mines) such as notepad/word, etc, the Barcode Reader reads data into the applicaton that currently has focus with is notepad/word but not my own applicaton. My question is as follows: Is there a way to write a Listener
7
23208
by: rupendra chaudhary | last post by:
Has anyone had experience with using bar codes with C#. I have a client who wants to read a bar code with a POS.They already have barcode scanner. but what will I need from a C# programmers perspective to read in the results of the scan? How do I get result of scanner and then use it in my code? *** Sent via Developersdex http://www.developersdex.com ***
7
4223
by: jim | last post by:
I need to have 2 simple barcode reader applications finished by midnight tonight. I have never written any barcode reader software and need any help that you may be able to offer. I do not know what type of barcode the user will have, so I need to be able to accept input from any industry standard barcode reader. I need to check the barcodes scanned to see if they are in a database of acceptable barcodes and simply show ACCEPT or...
7
4835
by: divyac | last post by:
I am doing an inventory control project and i want to create barcodes for the products in addition to the product details in a form.The form values should be submitted to the database to retrieve for future use.How to generate a barcode,how to load it in the database and retrieve it back.can i generate the barcode and submit the form with a single "submit" button?pls guide me in this issue.The following code is used to generate a barcode.i just...
0
9639
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9479
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10146
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9942
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8967
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7492
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6733
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4043
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3639
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.