LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (November 1998, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 3 Nov 1998 08:34:38 -0500
Reply-To:     "John T. Jones" <jonesj@PHARMARESEARCH.COM>
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         "John T. Jones" <jonesj@PHARMARESEARCH.COM>
Subject:      SAS MAC - MSWord normal.dot: Can use another?
Content-Type: text/plain; charset="us-ascii"

_ALL_;

We have a sas macro that initiates word minimized, applies a couple of macros to the specified file, and then closes while minimized.

When word closes it overwrites the normal.dot file.

Is there a way to specify a different normal.dot file on the command line?

Thanks... John,

%Macro wordmin(file=, type= );

data _null_; wmacro="start /m c:\msoffice\winword\winword.exe &file /mtables&type /mexitword"; call system(wmacro); run;

%Mend wordmin;


Back to: Top of message | Previous page | Main SAS-L page