Michael Pratt wrote:

> This is what I want to do and I dont know where to start:
>
> List files in a directory taking that list with just the filename and no
> other information

    Use the glob operator of perl (perldoc -f glob)
     while (<*>) {
        print "$_\n";
      }
     This should print all the files (just the filenames) in your current dir to 
stdout.

> using that information and populating a listbox.

    If it is perlTk you are talking about, type widget at the command prompt.
    There are quite a few examples there and populating a listbox is one of them.

>
>
> Can someone help?
>
> Mike

   HTH,
   Sudarsan



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to