Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

printing barcode in crystal11

Status
Not open for further replies.

MISTIDOG

Programmer
Dec 23, 2002
3
0
0
IL
hi
i try to print barcode in crystal report
and i am always getting extra tab in the barcode like square
or dots in the middle of the barcode
the field is string like "4004001CLN70733"
the code is BarcodeC128A({OOLINE.OBITNO})
thanx
 
Seem to remember that i had to convert the barcode string, via a formula to include an @ sign at the beginning and at the end. Control characters to designate the start and the stopping points.

Changed to code 128 via a free downloaded font.

Don't know if this helps, been a while...
Pat
 
hi Phwrd thank you for your help
but its not working
i am doing the same thing in crystal 8 the barcode look fine
its only happen in crystal11
 
Did you upgrade the report? Most upgrades are smooth, but it's the prime suspect for an otherwise inexplicable problem.

Try starting fresh on Crystal 11, and see if something that should be just the same will actually work OK.

[yinyang] Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 [yinyang]
 
you will need a formula like this:

'*'+{your field Name}+'*' and if your field is a numeric one, you will have to do a convertion and the formula will look like this:

'*'+totext({your field Name}, 0,"") +'*'
 
hi buck
thanks
but we r working with code128 and '*' is for code39
do u know the start sign and the stop sign of code128?
thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top