Hi
is used the below free barcode lib.
created a image parameter and passed through the bytes.
works well... but prefer to use crystal reports though.
thanks
Dim b As New BarcodeLib.Barcode
Dim TYPE As BarcodeLib.TYPE
TYPE = BarcodeLib.TYPE.CODE39
Dim IMG As Image
IMG = b.Encode(TYPE, "Lot", Color.Black, Color.White, 200, 50)
Dim ms As New IO.MemoryStream()
IMG.Save(ms, System.Drawing.Imaging.ImageFormat.Png)
Dim bytes = ms.ToArray()
Me.dsFGLabels.vw_FGLabels.Rows(0).Item("TEST") = bytes