RichText Printing Headers and Footers.

2010-05-05 Thread Steve Cookson
Hi, I'd like to include images in my RichText Printing Headers and Footers. I assume that I can over-ride the OnPrintPage function, so I've done this: Wx::RichTextPrintout::OnPrintPage{ my ($self, $page) = @_; my $dc = self-GetDC(); if ($dc){ if (HasPage($page))

[Fwd: CPAN Upload: M/MB/MBARBON/Wx-0.9702.tar.gz]

2010-05-05 Thread Mattia Barbon
Original Message Date: Thu, 6 May 2010 02:06:05 +0200 Subject: CPAN Upload: M/MB/MBARBON/Wx-0.9702.tar.gz To: Mattia Barbon mattia.bar...@libero.it From: PAUSE upl...@pause.perl.org The uploaded file Wx-0.9702.tar.gz has entered CPAN as file:

RE: RichText Printing Headers and Footers.

2010-05-05 Thread Steve Cookson
OK, so I think I didn't get that quite right. I've added a separate package name and a 'use base', but it says the base is not found. So now the code is: package Wx::RichTextPrintout; use Wx qw(:everything); use base qw(Wx); sub OnPrintPage{ my ($self, $page) = @_;