How would I make a GUI perhaps using the code below to enable the end user to select a 
file from a drop down list and have it then subsequently parse it? Thanks.
 
== Start ==
use strict;
my @files = glob('3D*.log');
foreach(@files){
  open(INFILE,$_) || die "Could not open file $_!  $!";
while (<@files>) {
        my @files = split /\s+/, $_, 9;
        print join ',', @files;
}

}
==== End =====


===
Mike Singleton 
Network Analyst
(253) 272-1916  x1259
(253) 405-1968 (cellular)
[EMAIL PROTECTED]

DaVita Inc.
_______________________________________________
Perl-Win32-Admin mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to