Ernesto_Paez
MIS
Hi Everyone,
i am printing labels on a"smart label printer 620" from my application a vfp 9.0 sp2.
i have a spinner in the form that if i want to print more than one label of the same label, i just increase from the default value=1 to 2, then i would like to get at the bottom of the label something like this "Label 1 of 2" printed, i put it in the page footer but it does not print,(the label got printed) but no what i have in the Iif() i also added it in the detail band, does not print either.
in the picture below you won't see the Iif()as i removed, can anyone guide me how to accomplish it ?
here is a picture of the label lbx
Thanks a lot in advance
i am printing labels on a"smart label printer 620" from my application a vfp 9.0 sp2.
i have a spinner in the form that if i want to print more than one label of the same label, i just increase from the default value=1 to 2, then i would like to get at the bottom of the label something like this "Label 1 of 2" printed, i put it in the page footer but it does not print,(the label got printed) but no what i have in the Iif() i also added it in the detail band, does not print either.
in the picture below you won't see the Iif()as i removed, can anyone guide me how to accomplish it ?
Code:
Iif(thisform.spinner1.value>1, "Label "+ trans(_pageno)+ 'of '+ trans(_pagetotal), " ")
Thanks a lot in advance