in reply to Modal frame in wxPerl?

It is possible to subclass Wx::Dialog and do your own thing with it, just like you can subclass Wx::Frame. Is that what you wanted to do?

Replies are listed 'Best First'.
Re^2: Modal frame in wxPerl?
by james_ (Novice) on Nov 25, 2008 at 18:04 UTC
    Ahh, that's exactly right! Wx::Dialog does the trick. I was trying Wx::MessageDialog which doesn't allow for additional widgets.

    Thanks for the help! As a side note, when using Wx::Dialog, all widgets should be placed directly on the Dialog, not on a Wx::Panel on the Wx::Dialog. This is different to frames.