G
Guest
Is there a way you can set up Bar Codes in Access?
Thanks fo any help
Thanks fo any help
Roger Bell said:Is there a way you can set up Bar Codes in Access?
Roger Bell said:Many thanks Steve. So does that mean you could set up a table with a
range
of numbers from say 1000 to 10,000, produce a label report and then print
them off.
I gather each label would have its own specific coding according
to the numbers in the table?
Also, I have set up a module to generate a range of numbers, approx
100,000
as follows:
Option Compare Database
Function MakeData(HowMany As Long)
Dim rs As DAO.Recordset
Dim lng As Long
Set rs = DBEngine(0)(0).OpenRecordset("tblCount", dbOpenDynaset)
For lng = 1 To HowMany
rs.AddNew
rs![CountID] = lng
rs.Update
Next
rs.Close
Set rs = Nothing
End Function
I cannot for the life of me remember what I need to type in the Bottom
(Immediate) (Ctl & G to get there )Section to generate these numbers in
my
table
Thanks if you can help
Steve said:Consider using Barcode type 39. It's free and is added to your computer
system as a font.
Look at Zebex.com for a barcode scanner. A scanner is installed in
parallel
with your keyboard and acts just like a keyboard. Rather than pressing
keys,
you scan a barcode and the "value" fo the barcode is entered into the
form.
For printing barcodes in any kind of a report, you use a textbox and set
the
font to Barcode Type39.
PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
(e-mail address removed)