Greetings,
Sorry if I am being thick, but I am trying to print a panel, which is a notebook page in this case.
I can't seem to get my head around what I need to pass to a Print class ( i.e. the one from the wxDemo )
Any help or suggestions would be most welcomed
It depends on what you have on the panel, and what you want the output to look like. If you just what to do something like a Print-screen then you can use a wx.WindowDC to Blit the visible contents of the window to a wx.MemoryDC with a bitmap of the right size selected into it, and then print that bitmap. In general, to print all you really need to do is to be able to draw the content of each page.
ยทยทยท
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!