LL_OPTION_COPIES

Hello!

How do i use in C# the option LL_OPTION_COPIES, so than i can preview and print more than one copie of one page? Can you give me an example?

Thank you!

Hi there again!

Let me explain better. I have just one table that i want, on preview, to repeat in more that one page, to have the original and the duplicated document and so on, for example. How can i do this in C#? Really need help!

Thank you

Ana

“Ana Duarte” <springynha@hotmai…> skrev i en meddelelse
news:371196192008174835@combit.net…

Hi there again!

Let me explain better. I have just one table that i want, on preview, to
repeat in more that one page, to have the original and the duplicated
document and so on, for example. How can i do this in C#? Really need
help!

I’ve chosen the really simple solution, that is repeat the record to be
printed in my main printing loop. So instead of just transferring one
record, i transfer the same record the number of times needed to get the
copies. Of course this requires that just one mainrecord pr. page is
printed, records from subtables isn’t repeated. And if records from
subtables required pagebreak, you would get master record page 1-2-3, master
record page 1-2-3 instead of master 1, master 1, master 2, master 2, master
3, master 3 but perhaps this is enough to solve your problem?


/Steen

Remove text up to and including last underscore in domain for email

Yes, that is the solution, because i just did it, a couple of hours before your aswner and it works fine, but thank you anyway!

Ana Duarte

“Ana Duarte” <springynha@hotmai…> skrev i en meddelelse
news:371196192008174835@combit.net…

Hi there again!

Let me explain better. I have just one table that i want, on preview, to
repeat in more that one page, to have the original and the duplicated
document and so on, for example. How can i do this in C#? Really need
help!

I’ve chosen the really simple solution, that is repeat the record to be
printed in my main printing loop. So instead of just transferring one
record, i transfer the same record the number of times needed to get the
copies. Of course this requires that just one mainrecord pr. page is
printed, records from subtables isn’t repeated. And if records from
subtables required pagebreak, you would get master record page 1-2-3, master
record page 1-2-3 instead of master 1, master 1, master 2, master 2, master
3, master 3 but perhaps this is enough to solve your problem?


/Steen

Remove text up to and including last underscore in domain for email

Hi!

I thought that i had found the solution, but it doesn’t work when there is more than one record in the table. Steen, you are saying to put duplicated records on the DataSet? I did it that way but i can’t put a page break between the duplicated records :expressionless:

Thank you

Ana

Yes, that is the solution, because i just did it, a couple of hours before your aswner and it works fine, but thank you anyway!

Ana Duarte

“Ana Duarte” <springynha@hotmai…> skrev i en meddelelse
news:371196192008174835@combit.net…

Hi there again!

Let me explain better. I have just one table that i want, on preview, to
repeat in more that one page, to have the original and the duplicated
document and so on, for example. How can i do this in C#? Really need
help!

I’ve chosen the really simple solution, that is repeat the record to be
printed in my main printing loop. So instead of just transferring one
record, i transfer the same record the number of times needed to get the
copies. Of course this requires that just one mainrecord pr. page is
printed, records from subtables isn’t repeated. And if records from
subtables required pagebreak, you would get master record page 1-2-3, master
record page 1-2-3 instead of master 1, master 1, master 2, master 2, master
3, master 3 but perhaps this is enough to solve your problem?


/Steen

Remove text up to and including last underscore in domain for email

“Ana Duarte” <springynha@hotmai…> skrev i en meddelelse
news:418706252008132356@combit.net…

Hi!

I thought that i had found the solution, but it doesn’t work when there is
more than one record in the table. Steen, you are saying to put duplicated
records on the DataSet? I did it that way but i can’t put a page break
between the duplicated records :expressionless:

I do not use datasets, since the amount of data involved in my applications
are to big for datasets. I use a simple print loop, meaning I have total
control of the number of records printed and which records are printed. A
print loop are quite simple to make, copied from my other post

fetch record
if previous record and pagechangeneeded
llprint
setfieldvalues
llprintfields (while repeat data)

Beware though, using print loops has it pro’s and con’s, not everything is
simple.


/Steen

Remove text up to and including last underscore in domain for email