Page 1 of 1

printing more than 1 field on 1 page and ff

Posted: Fri Jul 06, 2007 8:52 pm
by haribo
need a howto.
i must print several fields in 1 page, on top of page a small field with name or any other things, then date, then the text. print card cant work, because the text of the third field is variable up to 5 pages. any ideas??please
ralle

Posted: Fri Jul 06, 2007 10:38 pm
by kpeters
Ralle ~

spend the 5 bucks and buy Dan Shafer's eBook on Revolution Printing - best 5 bucks you will have ever spent. It answers that question and some you didn't even know you had.

http://www.shafermediastore.com/tech_main.html

HTH
Kai

Posted: Fri Jul 06, 2007 11:41 pm
by haribo
thats the post what i need at this time. its saturday and my creditcard dont work, the other is not accepted.
only the way, howto dissable the borders isnt a problem
Thanks
Ralle :oops:

Posted: Sat Jul 07, 2007 12:33 am
by haribo
okay, i have found this code
on printAllFields
repeat with thisField = 1 to the number of fields
-- collect data in collectedFields variable:
put "<p><b>" & the short name of field thisField \
& colon & "</b></p>" \
& the htmlText of field thisField after collectedFields
end repeat
-- print the variable:
revShowPrintDialog false, true
revPrintText collectedFields
end printAllFields

where must i put it with witch words before
Ralle