[19 Aug 2008] Tabulators in print
Posted: Sat Jun 13, 2020 5:31 pm
Note: This is an archived post that was originally sent to the Hollywood mailing list on Tue, 19 Aug 2008 00:17:15 +0200
Hello!
I have not been so active in the last time regarding Hollywood. I am currently trying to get back on track and do less working
There is an example in the guide for the AddTab function. It looks like this:
It makes a nice table into the window.
Now try to add a Locate instruction to the first line, eg.:
The result is a bit strange for me. From the second line it don't follows the tabulator positions as the first line.
Do I misunderstand something, or is it a problem?
Hello!
I have not been so active in the last time regarding Hollywood. I am currently trying to get back on track and do less working
There is an example in the guide for the AddTab function. It looks like this:
Code: Select all
AddTab(100, 200, 300, 400)
SetFontStyle(#UNDERLINED)
NPrint("Last name\tFirst name\tAge\tGender\n")
SetFontStyle(#NORMAL)
NPrint("Doe\tJon\t34\tMale")
NPrint("Smith\tMaggie\t25\tFemale")
NPrint("...\t...\t...\t...")
Now try to add a Locate instruction to the first line, eg.:
Code: Select all
Locate (50,300)
Do I misunderstand something, or is it a problem?