I want to save the user selected zoomfactor of a printpreview,
to use it the next time the program is started.
Now I can't find an easy/logical way to achieve that.
I want to save the user selected zoomfactor of a printpreview,
to use it the next time the program is started.
Now I can't find an easy/logical way to achieve that.
# now here I want to catch the user selected zoomfactor
# ShowModal is not accepted ...
Any suggestions ?
You can probably bind a handler for the preview frame's EVT_CLOSE event, and check it there. Don't forget to call event.Skip() so the default handler will still be called.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
I want to save the user selected zoomfactor of a printpreview,
to use it the next time the program is started.
Now I can't find an easy/logical way to achieve that.
# now here I want to catch the user selected zoomfactor
# ShowModal is not accepted ...
Any suggestions ?
You can probably bind a handler for the preview frame's EVT_CLOSE event, and check it there. Don't forget to call event.Skip() so the default handler will still be called.