-
-
- Install Barcode ActiveX Add-in in Excel
- Barcodes in MS Excel
- Create Sequential Barcode Labels in Excel
- Add Supplemental Text to Barcodes in Excel
- Extract Barcode Images from MS Excel
- Create Dynamic Barcodes Using LinkedCell in Excel
- Supplemental Text in Barcodes Using LinkedCell in Excel
- Barcodes in Excel with VBA
-
-
- BackColor
- BackStyle
- Barcode
- BarcodeColor
- BarcodeTextColor
- BarcodeTextFont
- BarcodeTextVisible
- BarcodeTextPosition
- BarcodeTextStretch
- BarHeight
- BearerBars
- BottomText
- BottomTextAlignment
- BottomTextColor
- BottomTextFont
- BottomTextVisible
- ControlAlignment
- ControlAutosize
- DataMatrixSize
- LinkedCell
- OptionalCheckChar
- Orientation
- OutlineColor
- OutlineStyle
- OutlineVisible
- OutlineWidth
- Padding Left/Top/Right/Bottom
- PDF417Columns
- PDF417ErrorCorrectionLevel
- PDF417RowHeight
- PDF417Truncated
- Picture
- QRCodeErrorCorrectionLevel
- QRCodeSize
- QuietZone Horizontal/Vertical
- Symbology
- TopText
- TopTextAlignment
- TopTextColor
- TopTextFont
- TopTextVisible
- UnitOfMeasure
- VerticalBarTextEntry
- WideToNarrowRatio
- XDimension
-
Barcode ActiveX Control
Barcodes in Excel with VBA
Use BarCodeWiz ActiveX macros in your own VBA code
- This macro is equivalent to selecting the cells A1 to A6 and clicking on Selection To Barcodes on the toolbar. It converts data from cells A1 through A6 to barcode images.
Sub MyMacro() Range("A1:A6").Select Application.Run ("AX_SelectionToBC") End Sub
The following functions are equivalent to clicking on BarCodeWiz toolbar:
- Application.Run ("AX_Options") : Opens the Options window.
- Application.Run ("AX_Sequential") : Opens the Sequential Number Generator window.
- Application.Run ("AX_SelectionToBC") : Converts the selected cells to barcodes.
- Application.Run ("AX_Labels") : Opens the Labels Wizard to convert selected cells to barcode labels.
- Application.Run ("AX_Undo") : Undoes the previous operation.