Hi Mark, Julian has put an extra flag in Wx::RichTextPrinting at my request to allow ::Print to work with OR without the print dialog box popping up. It therefore needs an extra flag (showPrintDialog) to be passed as the second flag in two methods:
- PrintFile, - PrintBuffer, I will send you a patch in the form below, when I get confirmation that Julian has restricted the change to 2.9.4. If that is the case Wx will not install with RichTextPrinting without this patch ( I hope for this version only). There are more details in my other email. Thanks and regards Steve > > #if WXPERL_W_VERSION_GE(2, 9, 4 ) > > bool PrintBuffer(const ........, , bool showPrintDialog); > bool PrintFile(const ........, , bool showPrintDialog); > . > . > . > > #else > bool PrintBuffer(const ........); > bool PrintFile(const ........); > . > . > . > > #endif > > I will submit a patch with that change to Mark Dootson. > > Will you put the change in all of 2.9.x? So the above code is correct, or > should it be 2.9.1 or something?