Jump to content

Barcode Generation & Printer


djc728

This topic is 3420 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I have a windows inventory application to develop for parts and I need a way to produce barcodes and print them out as users are entering data for the parts.

 

Can someone recommend a barcode plugin or a way to generate unique barcodes and a printer to print them out.  I thought I remember the company Zebra having a barcode printer type setup but wasn't too happy with it so any other suggestions would be greatly appreciated.

 

Thank you.

 

Dom

Link to comment
Share on other sites

Hello, this is a pretty simple thing to do, what I would recommend you to do is:

 

1 - create a calculation field containing the part number you want to make as a serial number, this number mjust be between "*" ( example *12345* )

2 - get a barcode font, this is the font you will use in the barcode layout

3 - create a layout with that font and point it to the calculation field

4 - set a script trigger or even a button (whichever better suits your needs ) to point that layout and print it.

 

As for the printer, Zebra offers a lot of label and barcode printers, but it all depends on the size of label you want to print, the most common ones are TLP-2844 and LP-2844

 

I hope this helps,

 

Regards

Link to comment
Share on other sites

One detail to note about Elkpodemiami's suggestion for how to generate a barcode is that the barcode font you find should be for the Code 39 barcode type to work as described.

 

Barcode Creator is another tool for generating barcodes. (Disclosure: I wrote it, so naturally I'm biased.) It's a folder of scripts you can copy & paste into your solution. You can pass Barcode Creator your product serial number as a script parameter, and receive a script result in base 64. You can then use the Base64Decode function to put the barcode image in a container field. It may spare you some deployment hassle compared to fonts or plugins, since there are no fonts or plugins to install on client machines — it's just FileMaker. If you're working on a multi-user solution, this is especially great since you only have to install it once on the hosted file for all clients to be able to use it.

 

What do your product serial numbers look like? Depending on what characters you're using, Code 39 may not work. Code 128 is a great barcode type to start with if you don't need any particular type. It can encode any ASCII character (thus the "128" in the name), it's relatively compact, and the overwhelming majority of barcode scanners have no problem with it. Fonts and plugins are available that will handle Code 128 for you, but Barcode Creator gives you a bit more flexibility than most, and does some optimization for you that might be a hassle otherwise.

  • Like 1
Link to comment
Share on other sites

I recommend against the Google-based QR Codes. It makes your application dependent on both an internet connection, and the service continuing to exist. Google, for example, has already announced that their QR Code rendering is deprecated, so it is likely to stop working in the near future. This may be a reasonable stop-gap measure if you need QR Codes immediately, but keep looking for a more stable solution.

 

FMEasyBarcodes uses the jquery.qrcode.js JavaScript library for QR Code rendering, which does relatively low-quality encoding, but works if your needs aren't particularly demanding. FMEasyBarcodes also doesn't currently support Windows.

 

Another option that will require a bit more work on your part is to use SuperContainer. This thread can get you started in the right direction.

Link to comment
Share on other sites

This topic is 3420 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.