>below is a password entry dialog example. I'd like to know if it is
>possible to only have to press tab once (after typing the username) in
>order to have focus on the password field ??
>
>~~
>#! /usr/bin/perl -w
>use strict;
>use Tk;
>
>my ($username, $password);
>
>my $
listmail wrote:
below is a password entry dialog example. I'd like to know if it is possible to only have to press tab once
(after typing the username) in order to have focus on the password field ??
~~
How about:
#! /usr/bin/perl -w
use strict;
use warnings;
use Tk;
use
below is a password entry dialog example. I'd like to know if it is possible to only
have to press tab once (after typing the username) in order to have focus on the
password field ??
~~
#! /usr/bin/perl -w
use strict;
use Tk;
my ($username, $password);
my $top = MainW