I downloaded the latest version today and I am just trying this for the first time. I made a sample project
with two lables and two entry fields.
The generated bootstrap code follows
Note the line use TkXML;
I did a ppm search for this as well as a cpan search but did not find it.
What am I doing wrong?
#Do not edit this file by hand.
#
my $app_name = 'de1';
use lib $ENV{'GUIDOLIB'};
use TkXML;
use Tk;
my $ui_file = $app_name . '_gui.xml';
require $app_name . '_events.pl';
my $ui_file_path = (-e $ui_file ? $ui_file : Tk->findINC($ui_file));
my $mw = new TkXML(
file_path=>$ui_file_path,
eval_code=>\&eval_code,
);
MainLoop;
sub eval_code {
return eval ($_[0]);
}
Logged In: YES
user_id=590063
Sorry I did not collate! after doing that every thing seems to work fine