Hi together
I have a database field (varchar2) with "n" entry's ( like "00340383920026147139/ 00340383920026147146/ 00340383920026147153/ 00340383920026157153")
The delimiter is "/ "
and the formula is
stringvar array x := split({mydatabase.field},"/ ");
stringvar z := "";
numbervar y;
for y:=1 to ubound(x) do(
z := z+ "" + x[y]+chr(13);
);
z;
That give me back
00340383920026147139
00340383920026147146
00340383920026147153
00340383920026157153
when i try the get it back as a barcode like code39, i get back the following
"00340383920026147139
00340383920026147146
00340383920026147153
00340383920026157153"
it's a long string with line breaks
but i need something like
00340383920026147139
00340383920026147146
00340383920026147153
00340383920026157153
with out line breaks
any idea to realize that with crystal 2008 ?
Thanks in advance
I have a database field (varchar2) with "n" entry's ( like "00340383920026147139/ 00340383920026147146/ 00340383920026147153/ 00340383920026157153")
The delimiter is "/ "
and the formula is
stringvar array x := split({mydatabase.field},"/ ");
stringvar z := "";
numbervar y;
for y:=1 to ubound(x) do(
z := z+ "" + x[y]+chr(13);
);
z;
That give me back
00340383920026147139
00340383920026147146
00340383920026147153
00340383920026157153
when i try the get it back as a barcode like code39, i get back the following
"00340383920026147139
00340383920026147146
00340383920026147153
00340383920026157153"
it's a long string with line breaks
but i need something like
00340383920026147139
00340383920026147146
00340383920026147153
00340383920026157153
with out line breaks
any idea to realize that with crystal 2008 ?
Thanks in advance