in reply to Problem with Tk::JComboBox
#!/usr/bin/perl use strict; use warnings; use Tk; use Tk::JComboBox; use File::Glob (); my $wMain = MainWindow->new; my $cboFile = $wMain->JComboBox( )->pack(-padx => 30, -pady => 30); foreach $_ (glob('*')) { $cboFile->addItem($_); } MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with Tk::JComboBox
by davies (Monsignor) on Jan 31, 2010 at 18:45 UTC | |
by davies (Monsignor) on Feb 13, 2010 at 14:20 UTC |