cormanaz has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use Win32::GUI; my $main = Win32::GUI::Window->new( -name => 'Main', -width => 600, -height => 500 ); my $box = $main->AddCombobox( -name => "testbox" ); my $result = $box->InsertItem("test item"); $main->Show(); Win32::GUI::Dialog(); sub Main_Terminate { -1; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32::GUI Combobox problems
by jplindstrom (Monsignor) on Aug 29, 2004 at 22:25 UTC | |
|
Re: Win32::GUI Combobox problems
by doowah2004 (Monk) on Aug 30, 2004 at 12:48 UTC |