> > the "real/regular" program will then use for input. It asks the user
> > only two short text questions. Of course any of us would be quite happy

> 
> You could check out Win32::GUI (see HTML under .../html/lib/win32) or maybe
> use Tk as an alternative GUI interface - except it may not be installed
> on your target system.
> 

That's a lot of work for only two questions. Why not prompt the user
using STDIN:

 print 'Enter server: ';
 chomp(my $server = <STDIN>);
 print 'Enter login: ';
 chomp(my $login = <STDIN>);
_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to