This following dilemma will be a doozy for the hardcore programmers...
I am making a Wire Table database (for running cables and organizing the wires within). Some cables have 50+ conductors inside, all of which are documented.
When i print the report, there is a header section, and the wires are listed in the continuous section. When the continuous section is too long for one page, it goes to another (the new page still contains the same header information).
How can I note that it has gone to a second page, and populate a textbox with that info? (runtime only, not stored in a table)
Like so...
Cable number reads:
R-ER 49
Page 1 of a multi page cable should read:
R-ER 49 (contd. SH 1 of 3)
Page 2 needs to read:
R-ER 49 (contd. SH 2 of 3)
You get the idea.
So I need something to count the records, then realize that only X number of records fit per page, then calculate how many pages are needed, and fill an unbound textbox. Simple!
I warned it was only for hardcore.
Thanks. Sean.
I am making a Wire Table database (for running cables and organizing the wires within). Some cables have 50+ conductors inside, all of which are documented.
When i print the report, there is a header section, and the wires are listed in the continuous section. When the continuous section is too long for one page, it goes to another (the new page still contains the same header information).
How can I note that it has gone to a second page, and populate a textbox with that info? (runtime only, not stored in a table)
Like so...
Cable number reads:
R-ER 49
Page 1 of a multi page cable should read:
R-ER 49 (contd. SH 1 of 3)
Page 2 needs to read:
R-ER 49 (contd. SH 2 of 3)
You get the idea.
So I need something to count the records, then realize that only X number of records fit per page, then calculate how many pages are needed, and fill an unbound textbox. Simple!
I warned it was only for hardcore.
Thanks. Sean.