RE: [Perl-unix-users] dialog tab navigation issue

2004-07-14 Thread Schichmanter, EithanX
>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 $

Re: [Perl-unix-users] dialog tab navigation issue

2004-07-13 Thread pDale Campbell
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

[Perl-unix-users] dialog tab navigation issue

2004-07-13 Thread listmail
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