Help for this page

Select Code to Download


  1. or download this
    for each file in file list {
    open file in mathcad;
    save as other version;
    close file in mathcad;
    }
    
  2. or download this
    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();