标题: a simple DDE error [打印本页] 作者: shiyiming 时间: 2008-10-28 22:45 标题: a simple DDE error error
"ERROR: Physical file does not exist, EXCEL|SYSTEM."
my program is
options noxwait noxsync;
X "'C:\Program Files\Microsoft Office\Office\EXCEL.exe'";
DATA _NULL_;
X = SLEEP(3);
RUN;
FILENAME commands DDE 'EXCEL|SYSTEM';
%macro report(path=,outname=);
data _null_;
file commands;
PUT '[OPEN("C:\project\AMX103\05.Modeling\05.03.Other\20081028_dde\temp.xls")]';
run;
Thanks作者: shiyiming 时间: 2008-10-29 02:16 标题: Re: a simple DDE error you may check the location of your excel.exe, it's "C:\Program Files\Microsoft Office\Office11\EXCEL.exe" for Office 2003.