Ron LEVER wrote:
>
> Can anyone help.
>
> I created a textfield
>
> $win = Win32::GUI::Window->new(
> -name => 'Main',
> -text => 'Project Details',
> -width => $totalWidth,
> -height => $totalHeight,
> -minSize => [$totalWidth, $totalHeight],
> );
>
>
> How do I get it to move around to the different text boxes when I have
> finished my input??
>
use a DialogBox instead:
$win = Win32::GUI::DialogBox->new(
> -name => 'Main',
> -text => 'Project Details',
> -width => $totalWidth,
> -height => $totalHeight,
> -minSize => [$totalWidth, $totalHeight],
> );