Barcodesoft Frequently Asked Question

Do you have a physical address?
Yes, we do have a physical address.

Do you have a refund policy for your software?

Yes. All Barcodesoft software products are covered by 30-day-money-back-guarantee.

If you are dissatisfied with Barcodesoft software product you purchased, please contact us within 30 days of purchase. We will give you a full-refund.

But please be sure to remove Barcodesoft product from your computer after refund is issued.

All Barcodesoft hardware products are covered by a 30-day-return-for-replacement policy for any units that do not install properly or are received in damaged state.

Do you have a refund policy for physical products?
Yes, we do.

Damaged / Defective Product refund Policy

Damaged Products
Products that arrived damaged should be refused by the recipient and sent back by the carrier attempting to make the delivery.

The end user or reseller bear the sole responsibility to notify Barcodesoft for defective product within 30 days after receipt.
Defective products must be unused and returned to Barcodesoft in its original condition.

All product returns to Barcodesoft must be accompanied by proof or purchase, such as purchase receipt, invoice, copy of order or an emailed version of these confirmations.
Products must be packed appropriately.

Used products will be charged 15% restocking fee.

How to generate code 128 barcode in Crystal Reports?

To generate a Code 128 barcode in Crystal Reports, create a new formula field using the BCSLinearCode128 function from the Barcodesoft UFL library. Pass your database fields as arguments, place the formula field on your design canvas, and apply the Code128MHr font family.

How to generate code 128 barcode in MS Excel spreadsheet?

This implementation configures dynamic code 128 barcode encoding within spreadsheets by **registering the COM DLL interface** (cruflbcs_x64.dll for 64-bit systems or cruflbcs.dll for 32-bit environments) through an elevated command prompt. After **enabling all macros** inside the Excel Trust Center, open the VBA Editor using ALT + F11 to **bind the crUFLBcs Type Library reference** and import the barcodesoft.bas module. Data streams are then instantly converted using **native column formulas** like =Code128B(A1) and rendered visually by assigning the specialized Code128mHr barcode font typeface.

How to generate code 128 barcode in MS Access report?

This implementation configures automated code 128 barcode generation in database reports by **registering the underlying COM DLL framework** (cruflbcs_x64.dll for 64-bit platforms or cruflbcs.dll for 32-bit setups) using an elevated command prompt. After **lowering macro restrictions** within the Access Trust Center workspace, open the VBA backend via ALT + F11 to **link the crUFLBcs Type Library reference** and import the global barcodesoft.bas functions module. Finally, navigate to your report Design View, **bind the target textbox control source** using a table-mapped encoding expression like =Code128B([TableName].[FieldName]), and change the control typeface properties to the specialized Code128mHr barcode font.

How to generate GS1 128 barcode in Crystal Reports?

To generate a GS1 128 barcode in Crystal Reports, create a new formula field using the BCSLinearGS1128 function from the Barcodesoft UFL library. Pass your database fields as arguments, place the formula field on your design canvas, and apply the Code128M font family.

How to generate GS1 128 barcode in MS Excel spreadsheet?

To generate GS1128 barcode in Excel spreadsheet: enable VBA macro in Trust Macro Settings. Press F11 to launch Visual Basic Window. Establish Library Reference referencing cruflbcs.dll library, importing barcodesoft.bas, applying the =gs1128(A1) formula, and formatting cell typography with the code128m barcode font.

How to generate GS1 128 barcode in MS Access report?

This workflow details how to generate a GS1128 barcode within an MS Access database report. It guides developers through adjusting Access Trust Center security, launching the VBA editor via ALT + F11, adding the cruflbcs.dll type library reference, and importing the barcodesoft.bas module. Finally, it explains how to apply the =GS1128([TableName].[FieldName]) expression to a report text box in Design View and assign the specialized GS1128m barcode font.

How to generate code 39 barcode in Crystal Reports?

To generate a Code 39 barcode in Crystal Reports, create a new formula field using the BCSLinearCode39 function from the Barcodesoft UFL library. Pass your database fields as arguments, place the formula field on your design canvas, and apply the Code39MHr font family.

How to generate code 39 barcode in MS Excel spreadsheet?

Generate Code 39 barcodes directly in MS Excel using Barcodesoft's cruflbcs.dll and TrueType fonts. After enabling macros and registering the DLL via the VBA editor, import the barcodesoft.bas module to access the =code39() formula. Simply wrap your data with asterisks or use the provided VBA function—then copy the formula across your entire dataset for instant encoding. Apply one of 14 TrueType fonts (available with or without human-readable text, ranging from XXS to XXL aspect ratios) to any cell, and your scannable Code 39 barcodes are ready. Perfect for logistics, military, and industrial labeling, this solution integrates seamlessly into your existing Excel workflow.

How to generate code 39 barcode in MS Access report?

To generate Code 39 barcodes in MS Access, first enable all macros via the Trust Center settings. Then, open the VBA editor with ALT+F11 and reference the crUFLBcs 5.0 Type Library through Tools → References. Import the barcodesoft.bas module using CTRL+M to add the necessary functions. Return to Report Design View and set the text box control source to `=code39([TableName].[FieldName])`, replacing with your actual table and field names. Finally, right-click the control, open Properties, and set the font to Code39mHr to ensure proper barcode rendering. This streamlined process integrates barcode generation directly into your Access reports.

How to generate Data Matrix barcode in Crystal Reports?

To generate a Data Matrix barcode in Crystal Reports, create a new formula field using the BCSDataMatrixEncodeCR function from the Barcodesoft UFL library. Pass your database fields as arguments, place the formula field on your design canvas, and apply the BcsDataMatrix font family.

How to generate Data Matrix barcode in MS Excel spreadsheet?

To generate Data Matrix barcode in Excel spreadsheet: enable VBA macro in Trust Macro Settings. Press F11 to launch Visual Basic Window. Establish Library Reference referencing cruflbcs.dll library, importing barcodesoft.bas, applying the =datamatrix(A1) formula, and formatting cell typography with the BcsDatamatrixS barcode font.

How to generate Data Matrix barcode in MS Access report?

This workflow details how to generate a Data Matrix barcode within an MS Access database report. It guides developers through adjusting Access Trust Center security, launching the VBA editor via ALT + F11, adding the cruflbcs.dll type library reference, and importing the barcodesoft.bas module. Finally, it explains how to apply the =datamatrix([TableName].[FieldName]) expression to a report text box in Design View and assign the specialized BcsDatamatrix barcode font.

How to generate Upc-A barcode in Crystal Reports?

To generate a Upc-a barcode in Crystal Reports, create a new formula field using the BCSLinearUPCA function from the Barcodesoft UFL library. Pass your database fields as arguments, place the formula field on your design canvas, and apply the UpcEanM font family.

How to generate Upc-A barcode in MS Excel spreadsheet?

This implementation configures dynamic upc-a barcode encoding within spreadsheets by **registering the COM DLL interface** (cruflbcs_x64.dll for 64-bit systems or cruflbcs.dll for 32-bit environments) through an elevated command prompt. After **enabling all macros** inside the Excel Trust Center, open the VBA Editor using ALT + F11 to **bind the crUFLBcs Type Library reference** and import the barcodesoft.bas module. Data streams are then instantly converted using **native column formulas** like =Upca(A1) and rendered visually by assigning the specialized UpcEanM barcode font typeface.

How to generate Upc-A barcode in MS Access report?

This implementation configures automated Upc-a barcode generation in database reports by **registering the underlying COM DLL framework** (cruflbcs_x64.dll for 64-bit platforms or cruflbcs.dll for 32-bit setups) using an elevated command prompt. After **lowering macro restrictions** within the Access Trust Center workspace, open the VBA backend via ALT + F11 to **link the crUFLBcs Type Library reference** and import the global barcodesoft.bas functions module. Finally, navigate to your report Design View, **bind the target textbox control source** using a table-mapped encoding expression like =Upca([TableName].[FieldName]), and change the control typeface properties to the specialized UpcEanM barcode font.

How to generate Interleaved 2 of 5 barcode in Crystal Reports?

To generate an Interleaved 2 of 5 barcode in Crystal Reports, create a new formula field using the BCSLinearI25 function from the Barcodesoft UFL library. Pass your database fields as arguments, place the formula field on your design view, and assign the I25MHr font.

How to generate Interleaved 2 of 5 barcode in MS Excel spreadsheet?

This guide outlines the steps to generate an Interleaved-2-of-5 barcode in Excel using VBA and the Barcodesoft font utility. Begin by enabling all macros in the Trust Center, then open the VBA editor with **ALT+F11**. In the editor, add a reference to the `crUFLBcs 5.0 Type Library` from the Fontutil folder. Import the `barcodesoft.bas` module via **Ctrl+M**. Close the editor and use the formula `=i25(A1)` in a cell to encode your data. Finally, apply the **UPC/EAN** font to the output cell via Format Cells. With these steps, you can quickly generate barcodes for entire columns of data.

How to generate Interleaved 2 of 5 barcode in MS Access report?

This guide explains how to generate Interleaved-2-of-5 barcodes in MS Access. Start by enabling all macros in the Trust Center under Access Options. Launch the VBA editor with **ALT+F11**, then go to **Tools → References** and browse to add the `crUFLBcs 5.0 Type Library` from the Fontutil folder. Import the `barcodesoft.bas` module using **Ctrl+M**. Close the editor and open your report in Design View. In a text box control, enter the expression `=i25([TableName].[FieldName])`. Finally, right-click the control, open Properties, and set its font to the **I25MHr** typeface. This setup allows you to display scannable Interleaved-2-of-5 barcodes directly in your Access reports.

How to generate PDF417 barcode in Crystal Reports?

To generate a PDF417 barcode in Crystal Reports, create a new formula field using the BCSPDF417EncodeCR function from the Barcodesoft UFL library. Pass your database fields as arguments, place the formula field on your design canvas, and apply the BcsPdf417 font family.

How to generate PDF417 barcode in MS Excel spreadsheet?

To generate PDF417 barcode in Excel spreadsheet: enable VBA macro in Trust Macro Settings. Press F11 to launch Visual Basic Window. Establish Library Reference referencing cruflbcs.dll library, importing barcodesoft.bas, applying the =pdf417(A1) formula, and formatting cell typography with the BcsPdf417S barcode font.

How to generate PDF417 barcode in MS Access report?

This workflow details how to generate a PDF417 barcode within an MS Access database report. It guides developers through adjusting Access Trust Center security, launching the VBA editor via ALT + F11, adding the cruflbcs.dll type library reference, and importing the barcodesoft.bas module. Finally, it explains how to apply the =pdf417([TableName].[FieldName]) expression to a report text box in Design View and assign the specialized BcsPdf417 barcode font.

How to generate QR Code in Crystal Reports?

To generate a QR Code in Crystal Reports, create a new formula field using the BCSQRCodeEncodeCR function from the Barcodesoft UFL library. Pass your database fields as arguments, place the formula field on your design canvas, and apply the BcsQRCode font family.

How to generate QR Code in MS Excel spreadsheet?

To generate QR Code in Excel spreadsheet: enable VBA macro in Trust Macro Settings. Press F11 to launch Visual Basic Window. Establish Library Reference referencing cruflbcs.dll library, importing barcodesoft.bas, applying the =qrcode(A1) formula, and formatting cell typography with the BcsQrcodeS barcode font.

How to generate QR Code in MS Access report?

This workflow details how to generate a QRCode within an MS Access database report. It guides developers through adjusting Access Trust Center security, launching the VBA editor via ALT + F11, adding the cruflbcs.dll type library reference, and importing the barcodesoft.bas module. Finally, it explains how to apply the =qrcode([TableName].[FieldName]) expression to a report text box in Design View and assign the specialized BcsQRCode barcode font.

Barcodesoft
Frequently Asked Question