Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
TYPE to PRINTER
Message
 
To
04/02/2004 10:28:33
Mike Cole
Yellow Lab Technologies
Stanley, Iowa, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00873458
Message ID:
00873931
Views:
28
>I am not working with at table. I am working with strings of text.

How about placing the strings in a field of a table? Create a table with a structure something like:
nGroup N(3,0)
cString C(250)

Then fill the table with your text, maybe like so:
USE areporttable EXCLUSIVE
DELETE ALL
PACK
USE

USE areporttable
* process your strings....
* for each string that needs to be on the report:
APPEND BLANK
REPLACE xGroup  WITH < number that is different for each page you want >
REPLACE cString  WITH < the string you've processed >

*When you're all done:
REPORT FORM TheFaxReport  TO PRINT  PROMPT  PREVIEW
USE
Not knowing more about the source of the strings, it's hard to develop a better example. I've got to hit the road, so my next reply won't be as prompt.
Randy Bosma
VFP - Because life is too short to code in something else...
Previous
Reply
Map
View

Click here to load this message in the networking platform