I wonder how to save the barcode image file that i am generating in my project using ActiveBarcode..
Im using this code to convert and save it as a .bmp file:
Dim MyObject As Object
MyObject = CreateObject("BARCODE.BarcodeCtrl.1")
MyObject.text = txtBarcode.Text
MyObject.SaveAsBySize(txtDescription.Text + ".bmp", 330, 100)
the file is automatically being saved in the bin folder of my project but when i publish and install it in my pc. The bin folder is cannot be find so i cant load the image..
Is there a way to save these files to where i want to save it?? I need the code for this..
Thanks a lot!
Im using this code to convert and save it as a .bmp file:
Dim MyObject As Object
MyObject = CreateObject("BARCODE.BarcodeCtrl.1")
MyObject.text = txtBarcode.Text
MyObject.SaveAsBySize(txtDescription.Text + ".bmp", 330, 100)
the file is automatically being saved in the bin folder of my project but when i publish and install it in my pc. The bin folder is cannot be find so i cant load the image..
Is there a way to save these files to where i want to save it?? I need the code for this..
Thanks a lot!