John Levon wrote: > > However, there is some serious problems. Different invocations of the > print dialog is forgetting various settings such as number of copies, > all or range etc. Please do a check and make sure they are remembered > properly so when you bring up the dialog again, the old values are there > (some are ermembered like the from/to range)
From/to remembered? Here at my end, the entire printer dialogs gets reset, including the from/to values. I have no idea how that happens; well at least I can't get to the code where the reset is actually done. Of course there's FormPrint.C: 149 void FormPrint::update() 150 { 151 PrinterParams & pp = controller().params(); Every time, the controller().params() is called, it gives a brand new set of values, unrelated to previous input. So I guess the problem lies somewhere in ControlPrint.[Ch]. I had a quick look at that, but had no idea what this code is about, so didn't find any clue. Rob.