msi & plessey bar codes
Print barcodes in Visual Basic programs using Azalea Software's barcode fonts. We've already written functions that generate MSI-Plessey barcodes in VB programs.
This sample code is provided as is and input error correction is your responsibility. Please report any bugs or problems.
Function AzaleaMSI-Plessey(ByVal yourString as String) as String
' MSI-Plessey v6.0 Copyright 2008 Jerry Whiting. All rights reserved.
' Azalea Software, Inc. www.azalea.com
' This function creates MSI-Plessey bar codes using "<" and ">"
' for the start and stop bars.
' Format the output, AzaleaMSI-Plessey, using Azalea Software's MSI-Plessey font.
' yourContainer.text = AzaleaMSI-Plessey(yourString)
AzaleaMSI-Plessey = "<" + yourString + ">"
End Function
Please note that your particular implementation may require one or more check digits or some variation of MSI or Plessey codes.