Hi All,
I installed SAS 9.4M4 on a Windows PC, and when running the SAS Operational QualificationTool I get a popup error:
The program can't start because mfc100.dll is missing from your computer. Try reinstalling the program to fix this problem.
From http://support.sas.com/kb/60/148.html , it looks like it's relating to the goptions device=actximg section of SASHome\SASFoundation\9.4\sastest\graph\test\testgr.sas
Unfortunately, the TS note doesn't suggest a solution for the OQ tool, other than changing to goptions device=png, which of course wouldn't test activex.
My first thought is to just comment out this section of the testscript, and add an explanation with a link to the TS note. So that I can get a passing OQ report.
%if &sysscp=WIN or &sysscp=DNTHOST %then %do;
/* ************************************************ */
/* verify actximg -- gplot */
/* run on WIN boxes only */
/* ************************************************ */
title 'Verify ACTXIMG';
goptions device=actximg;
footnote h=1 j=r 'actximg_gplot';
proc sort data=sashelp.class out=class;
by weight;
where sex='M';
run;
symbol height=2 value=dot interpol=join;
proc gplot data=class;
plot height*weight / name='aigplot';
run; quit;
%if &syserr ne 0 %then %do;
%put ERROR: There is a problem with ACTXIMG GPLOT;
%let instrc=1;
%end;
symbol;
%end;
Of course I shouldn't be mucking with the OQ script provided by SAS. My other thought was just to accept the failing OQ report, and attach the TS Note explaining that SAS knows it can fail in 9.4M4. I would be okay with this if the report said that ACTXIMG failed (because I don't care about that). But instead, the report says that testgr failed, which I don't like. testgr.sas tests several devices other than ACTXIMG, so I'd like to be able to document that other other devices passed.
Just wondering if anyone has come up with a nicer solution than commenting out this section of the script.
Thanks,
-Q.
The Boston Area SAS Users Group is hosting
free webinars!
Next up:
Rick Wicklin presents Ten Tips for Effective Statistical Graphics (with SAS code) on Wednesday March 26.
Register now at
https://www.basug.org/events.