Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Labels...skipping labels that have already been used
Message
 
To
17/06/1998 15:13:43
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00109229
Message ID:
00109244
Views:
17
If printing labels, and you copy the desired information into a seperate updatable cursor, you can add blank records before adding the records to actually be printed.
Ex:
create cursor myLabels ( lblLine1 c(50), lblLine2 c(50), lblLine3 c(50))
insert into mylabels
insert into mylabels

select ( real file with live data )
scan for (label requirement condition)
  insert into mylabels ( lblLine1, lblLine2, lblLine3 );
     values ( live.fld1, live.fld2, live.fld3 )

endscan
Now you should be able to print with the first gap being blank...
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform