Dear members,
I presume that most wanted feature in all VFP version is report design and look. Until now I have had a few minor problemsw with it but now I faced myself with a problem that I can't to solve. Shortly, I have a report that have introduction part like:
Bellow is part of report divided into two columns (2 x 17 records changes) where are printed earlier issuance and borrowings of books. I made classic VFP9 report that works fine but looks ugly because I must to leave some presumed unknown space for data shaped as variables. Some printed data are short but some are pretty long and I thought about justification of text.
I planned to solve it with classic TEXTMERGE and (maybe) public variable that will appear on report:
but I need to make in bold variables and to full justify left and right margins of introduction text to get better look. I found some advice on Microsoft web pages with RTF codes but mentioned example doesn't function on my VFP9 (some error with general field, like illegal operation!?). Later I tried to direct data for report to Word document but I wasn't able to print Data section into two columns, like I did in VFP report ( sum, total, group also were unable to use). Is there some solution for this problem?
Thank you in advance for your opinions.
There is no good nor evil, just decisions and consequences.
I presume that most wanted feature in all VFP version is report design and look. Until now I have had a few minor problemsw with it but now I faced myself with a problem that I can't to solve. Shortly, I have a report that have introduction part like:
Code:
"Dear AAA,
This letter is to inform you that your membership account number XXX is closed for debt of YYY dollars, which was created because you did not return borrowed book number GGG, dated DD/MM/YYYY, in the duration of NNN days. For your records we give you insight all changes in the last 60 days."
I planned to solve it with classic TEXTMERGE and (maybe) public variable that will appear on report:
Code:
SET TEXTMERGE TO memvar lcText ON NOSHOW
SET TEXTMERGE ON
\\Dear << variable1 >>
\\this letter is to inform you that your membership account number <<variable2>> is closed...
\\for debt of << variable3 >> ...
...
SET TEXTMERGE TO
SET TEXTMERGE OFF
Thank you in advance for your opinions.
There is no good nor evil, just decisions and consequences.