Is there a way to show upper and lower case pattern match for the  -FPat
option for a dialog box default pattern:

sub browse_files
{
   my $save_name = $b_file;
   $status->configure(-text=>"Browse directories");
   if  ($base )
   {
      $b_file = $file_dialog->Show( -Path => $base, -FPat => "*$mnem*");
      $b_file = $save_name if !$b_file;
   }
   return $b_file;
}

$mnem is in upper case as in MNEM and I would like to display all files
that have '*MNEM*' or '*mnem*' in the filename. I've read the perldoc's for
FileDialog and I couldn't find anything in there.
Thanks,
Tom


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

Reply via email to