Function AzaleaCodabarA(ByVal yourString as String) as String ' Copyright 2016 Azalea Software, Inc. www.azaleabarcodes.com ' This function creates Codabar bar codes using "A" for the start and stop bars. ' Format the output, AzaleaCodabarA, using Azalea Software's Codabar font. AzaleaCodabarA = "A" + yourString + "A" ' yourContainer.text = AzaleaCodabarA(yourString) End Function Function AzaleaCodabarB(ByVal yourString as String) as String ' Copyright Azalea Software, Inc. www.azaleabarcodes.com ' This function creates Codabar bar codes using "B" for the start and stop bars. ' Format the output, AzaleaCodabarB, using Azalea Software's Codabar font. AzaleaCodabarB = "B" + yourString + "B" ' yourContainer.text = AzaleaCodabarB(yourString) End Function Function AzaleaCodabarC(ByVal yourString as String) as String ' Copyright Azalea Software, Inc. www.azaleabarcodes.com ' This function creates Codabar bar codes using "C" for the start and stop bars. ' Format the output, AzaleaCodabarC, using Azalea Software's Codabar font. AzaleaCodabarC = "C" + yourString + "C" ' yourContainer.text = AzaleaCodabarC(yourString) End Function Function AzaleaCodabarD(ByVal yourString as String) as String ' Copyright Azalea Software, Inc. www.azaleabarcodes.com ' This function creates Codabar bar codes using "D" for the start and stop bars. ' Format the output, AzaleaCodabarD, using Azalea Software's Codabar font. AzaleaCodabarD = "D" + yourString + "D" ' yourContainer.text = AzaleaCodabarD(yourString) End Function