Manual For MW6 Barcode ASP Component


Index:

Installation and Testing

MW6 Barcode ASP Component can add professional quality 1D barcode image to your web pages.  Do the following procedures for installation and testing.

  1. Copy the MW6BarcodeASP.dll to the windows system folder of the IIS server.

  2. Do the command "regsvr32 MW6BarcodeASP.dll" for registering the MW6 Barcode ASP component.

  3. Copy Demo.html, CreateImg.asp and Show.asp to a folder of the IIS server where Active Server Pages are enabled. For example, you can create one folder "C:\Inetpub\wwwroot\MyFolder" and copy those 3 files to this folder..

  4. Enter the URL of Demo.html to your browser for verifying whether Barcode ASP component is working or not. For example, you can enter http://localhost/MyFolder/Demo.html for testing it on the IIS server itself.  

 

Back to Top


 

Properties

  • BarColor: Bar color and text color, the default is black.
  • BarHeight: Bar height in CM (centimeter), the default is 1.5 CM.
  • BackColor: Background color, the default is white.
  • CheckDigit: Indicates that the check digit is required or not. The check digit is mandatory for all symbologies except Code 39, Industrial 2 of 5 and CodaBar, the default is "Yes".
  • CheckDigitToText: Indicates that the check digit should be displayed in the barcode message or not, the default is "Yes".
  • CodabarStartChar: Start character for CodaBar with 4 options ('A', 'B', 'C' or 'D'), the default is 0 indicating  'A'.
    • 0 indicating 'A'
    • 1 indicating 'B'
    • 2 indicating 'C'
    • 3 indicating 'D'
  • CodabarEndChar: End character for CodaBar with 4 options ('A', 'B', 'C' or 'D'), the default is 1 indicating 'B'.
    • 0 indicating 'A'
    • 1 indicating 'B'
    • 2 indicating 'C'
    • 3 indicating 'D'
  • Data: Message encoded by the barcode, the default is "1234".
  • Height: Indicates the height of the barcode image, the default is 200 pixels.
  • NarrowBarWidth: Narrow bar width in CM, the default is 0.07CM.
  • Orientation: Orientation of barcode with 4 options, the default is 0 indicating 0 degree.
    • 0 indicating 0 degree
    • 1 indicating 90 degrees
    • 2 indicating 180 degrees
    • 3 indicating 270 degrees
  • ShowText: Indicates that the barcode data should be displayed or not, the default is "Yes".
  • Supplement: Supplement to be encoded for UPC and EAN, the default is blank.
  • SupplementGap: Distance in CM between the normal barcode and the supplement, the default is 0.5CM.
  • SupplementType: Indicates the supplement type with 3 options, the default is 0 indicating "None".
    • 0 indicating None
    • 1 indicating Supplement 2
    • 2 indicating Supplement 5
  • SymbologyType: Indicates the barcode type with 24 options, the default is 0 indicating CodaBar.
    • CODEBAR = 0
    • CODE11 = 1
    • CODE128 = 2
    • CODE39 = 3
    • CODE39EXT = 4
    • CODE93 = 5
    • EAN128 = 6
    • EAN13 = 7
    • EAN8 = 8
    • INTERLEAVED25 = 9
    • ISBN = 10
    • JAN13 = 11
    • JAN8 = 12
    • MAT25 = 13
    • MSI = 14
    • PLANET = 15
    • POSTNET = 16
    • SSCC18 = 17
    • SCC14 = 18
    • UPCA = 19
    • UPCE = 20
  • TextFont: Indicates the font characteristic of the displayed bar message.
  • UPCESystem: Indicates the encoding system for UPCE with 2 options, the default is 0 indicating "System 0".
    • 0 indicating System 0
    • 1 indicating System 1
  • Wide2NarrowRatio: Ratio of the wide bar to the narrow bar, typically this value is between 2 and 3, the default is 2.
  • Width: Indicates the width of the barcode image, the default is 300 pixels.
 

Back to Top