Anyone can correct me? (-:
When calling out the job no, the details will be displayed.
for eg : CHEVSINSMZ 100, CHEVSINSMZ 101, CHEVSINSMZ 102
I want to trim them into CHEVSINSMZ 100 & 101 & 102.
jt_hblno is the field name of CHEVSINSMZ 100..
Code as below in VFP version 6.
if k=1
if .not.(empty(jt_hblno))
arr[1,k]= "("+alltrim(str(k))
arr[2,k] = jt_hblno
k = k+1
else
k = k+1
endif
else
:
:
:
When calling out the job no, the details will be displayed.
for eg : CHEVSINSMZ 100, CHEVSINSMZ 101, CHEVSINSMZ 102
I want to trim them into CHEVSINSMZ 100 & 101 & 102.
jt_hblno is the field name of CHEVSINSMZ 100..
Code as below in VFP version 6.
if k=1
if .not.(empty(jt_hblno))
arr[1,k]= "("+alltrim(str(k))
arr[2,k] = jt_hblno
k = k+1
else
k = k+1
endif
else
:
:
:
Result said:CHEVSINSMZ 100, CHEVSINSMZ 101, CHEVSINSMZ 102