becks22
22nd October 2010, 09:37
Hi ,
I am printing Barcode through BaaNIV But I am unable to scan the Barcode Print .Can any one Please guide me for the solution ..The barcode coding is done in BaaN Iv only ..Please guide

bdittmar
22nd October 2010, 10:05
Hi ,
I am printing Barcode through BaaNIV But I am unable to scan the Barcode Print .Can any one Please guide me for the solution ..The barcode coding is done in BaaN Iv only ..Please guide

Hello,

be more specific, please.

Type of barcode ?
Does the scanner support the type of barcode (2D barcode, 1D scanner)?

As it sounds, you built the Barcode with "winprint"

Whats the sequence, you built the BC ?

Provide all details, please.

Regards

becks22
22nd October 2010, 15:01
Hi ,

What we have done is We have generated the Barcode Through BaaN coding which goes as :
barcode.test = chr$(27) & chr$(22) & "E#%" & sprintf("%28s",item)
where barcode.test is input field in the report section ..
The print is coming ok but its not scannable..

bdittmar
22nd October 2010, 17:28
Hi ,

What we have done is We have generated the Barcode Through BaaN coding which goes as :
barcode.test = chr$(27) & chr$(22) & "E#%" & sprintf("%28s",item)
where barcode.test is input field in the report section ..
The print is coming ok but its not scannable..

Hello,
as i see your coding right, you're building:

Code93 , Hight = 3 , 5 Characters

If your variable don't fit in 5 characters, a barcode is printed, but unreadable.
Please try with a 5 character input, or assign another number of characters to fit with the stringlength.

------------- From Quickguide --------
The 3rd character of the “E#%” must coincide with the input string length, or the barcode won’t print (Not readable).

Regards

becks22
3rd November 2010, 13:39
Hi I am able to print the barcode but its not getting scanned ..I think the problem may be with the aspect ratio but I am unable to change it as it is disable on the print preview window ..

Please guide as I am not getting any solution to solve my problem ...
Below is the barocde code which I have given ..The item is of length 9
barcode.item = chr$(27) & chr$(22) & "E#*" &(sprintf("%9s",item))

erpengineer
3rd November 2010, 15:39
Please post a sample printout e.g. as pdf file or picture and the name of the scanner (manufacturer, modell).

bdittmar
3rd November 2010, 15:53
Hi I am able to print the barcode but its not getting scanned ..I think the problem may be with the aspect ratio but I am unable to change it as it is disable on the print preview window ..

Please guide as I am not getting any solution to solve my problem ...
Below is the barocde code which I have given ..The item is of length 9
barcode.item = chr$(27) & chr$(22) & "E#*" &(sprintf("%9s",item))

Hello,

E#*
Code 93
High = 3
Number of characters = 10

For 9 characters in the string item :

E#) must be used !

As you see from my post above, the correct number of characters in the string must be used.

Regards

richylh
3rd November 2010, 22:11
Also, make sure your printer supports the barcode fonts. I used to try in the printer type 'direct' and failed all the time because the printer did not support it.

Try to use bwprint in 'Windows Printer', which normally sounds OK if you use the latest version of bwprint.

becks22
9th November 2010, 06:14
Hi Guys ..Problem Solved ..Its getting scanned now ..It was the length problem ...Thanks To everyone for their valuable time and support