Hi,
In my app, I have to print certain reports on standard forms. Some fields on those forms don't fit in a single line, so they have to be divided. The problem is that when I spread the field in report to occupy several lines, they don't fit into prefabricated blanks, making the report look messy. I only can change the line spacing by increasing font size, and that spoils the report in another way, not to mention that in such case field's *value* may not fit the blank. I might divide it to separate fields, to print SUBSTR(field,1,20),SUBSTR(field,21,40), etc. on each own separately positioned line, but then it's likely to be divided mid-word. So I'd also have to manually program a "smart" carry-over function - a task that VFP does for multi-line fields automatically. Or, God forbid, hyphenation. Which I'd rather avoid if possible. Is there any other way?
Thanks.
In my app, I have to print certain reports on standard forms. Some fields on those forms don't fit in a single line, so they have to be divided. The problem is that when I spread the field in report to occupy several lines, they don't fit into prefabricated blanks, making the report look messy. I only can change the line spacing by increasing font size, and that spoils the report in another way, not to mention that in such case field's *value* may not fit the blank. I might divide it to separate fields, to print SUBSTR(field,1,20),SUBSTR(field,21,40), etc. on each own separately positioned line, but then it's likely to be divided mid-word. So I'd also have to manually program a "smart" carry-over function - a task that VFP does for multi-line fields automatically. Or, God forbid, hyphenation. Which I'd rather avoid if possible. Is there any other way?
Thanks.