torturedmind
Programmer
Good day to all.
So we have this report that we submit to our government for update purposes. For illustration only, let's say...
We all know that the horizontal lines separate each record and when EOF() is encountered, these lines also stop printing. Now our government wants these lines to fill the rest of the page even if there are no more records to print. I cannot do records-per-page method because several fields are "Stretch with overflow" so there will be varying number of records per page. I personally think that the change they wanted defeats the purpose of the "***** NOTHING FOLLOWS *****" idea. My question is - how can I do that? Is it even possible?
TIA
kilroy
philippines
"Once a king, always a king. But being a knight is more than enough."
So we have this report that we submit to our government for update purposes. For illustration only, let's say...
Code:
+-------------------------------------------------------------+
| fld1 | fld2 | fld3 | fld4 |
+-------+----------+------------------------+-----------------+
| val1 | val2 | val3 | val4 | [i]record 1[/i]
+-------+----------+------------------------+-----------------+
| val1 | val2 | val3 | val4 | [i]record 2[/i]
+-------+----------+------------------------+-----------------+
| val1 | val2 | val3 | val4 | [i]record 3[/i]
+-------+----------+------------------------+-----------------+
| val1 | val2 | val3 | val4 | [i]record 4[/i]
+-------+----------+------------------------+-----------------+
| : | : | : | : |
+-------+----------+------------------------+-----------------+
| val1 | val2 | val3 | val4 | [i]record n[/i]
+-------+----------+------------------------+-----------------+
[i]***** NOTHING FOLLOWS *****[/i]
We all know that the horizontal lines separate each record and when EOF() is encountered, these lines also stop printing. Now our government wants these lines to fill the rest of the page even if there are no more records to print. I cannot do records-per-page method because several fields are "Stretch with overflow" so there will be varying number of records per page. I personally think that the change they wanted defeats the purpose of the "***** NOTHING FOLLOWS *****" idea. My question is - how can I do that? Is it even possible?
TIA
kilroy
philippines
"Once a king, always a king. But being a knight is more than enough."