in reply to How do I use Tk::Label in a drop-down?

Could you elaborate slightly? Do you mean that you can't pack other widgets in the same window as a Tk::Message?

ie, is it (a more complex version of) the following that doesn't work:

$main = MainWindow->new; $main->Message(-text => 'xyzzy')->pack; $main->Button(-text => 'foo')->pack; MainLoop;
?

Replies are listed 'Best First'.
Re^2: How do I use Tk::Label in a drop-down?
by perlNoob (Acolyte) on Feb 06, 2005 at 21:19 UTC
    I'm sorry, yes I meant I couldn't pack anything under the Message, but I realised my stupidity and just used label after that

    sorry about the bad post and thanks for your help anyway :)