Hello Monks,
I decided to use perl TK for my GUI. Here is the issue i am having. For example, how can i positon a lable.
With the win32::GUI it had a specific directive being -pos0,5 etc.
Is there a equilvant for perl TK?
Example below
my $mw = new MainWindow;
$mw->minsize(qw(600 700));
$mw->maxsize(qw(600 700));
my $emailLab = $mw -> Label(-text=>"Enter name:") -> pack();
MainLoop;