Help for this page
for each file in file list { open file in mathcad; save as other version; close file in mathcad; }
use Win32::OLE; my $mcd = Win32::OLE->new('Mathcad.Application'); ... my $sht = $mcd->{'Worksheets'}->Open($file_full_name); $mcd->SaveAs($full_file_name, [mcMcad2001i 11]); # this is a guess! $mcd->Close();