ma...@mm... wrote:
> problem is when i click on the comboxbox it will only list 1 entry (there
> are 2)
InsertItem() can insert only one item at a time. use this instead:
$dunlist->Add(@dunentries);
> and both $Window and $Window2 will freeze. what am i doing wrong?
you should not call $Window2->Dialog(), because it will intercept messages
from $Window2 *only*. Comboboxes fire their own messages, so you need a
Dialog() call that intercepts everything:
Win32::GUI::Dialog();
> also is there a way to stop a window from being resized?
use -resizable => 0 when building the window.
> is there a way to open a window maximized.
call $Window2->Show(3); # 3 == SW_SHOWMAXIMIZED
> and (i think this is the last one) is it possible to make the widgets
sticky
> like in tk?
dunno what it means...
cheers,
Aldo
__END__
$_=q,just perl,,s, , another ,,s,$, hacker,,print;
|