- or download this
package Tk::Widget;
use Tk::Entry;
...
# ...
my $entry = $parent->Entry(.....);
}
- or download this
package Tk::MyEntry;
require Tk::Widget;
use base qw(Tk::Entry);
Construct Tk::Widget 'MyEntry';
# ...
- or download this
Can't locate object method "Construct" via package "Tk::Widget" at ...
+Tk/Frame.pm line 13...