Re: OS 9 and Saving Excel Work Books
Re: OS 9 and Saving Excel Work Books
- Subject: Re: OS 9 and Saving Excel Work Books
- From: nellA hciR <email@hidden>
- Date: Mon, 29 Jul 2002 07:56:32 -0800
iH Jason,
this worked for me Mac OS 9.1, Excel 2001 [(v9.0.1 (3122)]
- hcir
set vDestinationPathXLS to (path to desktop as text)
set vExcelPathName to "Excel Doc.xls"
tell application "Microsoft Excel"
Activate
set AlertBeforeOverwriting to false
set DisplayAlerts to false
set vNewWkbk to Create New Workbook
set vDestinationPathXLS to (vDestinationPathXLS & vExcelPathName as
text)
Save vNewWkbk In vDestinationPathXLS As xlNormal
Close Workbook vExcelPathName
set DisplayAlerts to true
set AlertBeforeOverwriting to true
end tell
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.