I realize there is probably something obvious staring me
in the face, but I just don't see it.
I've just added a conditional (#IF) to my
source code, and just get a
Syntax Error 477. (Syntax error - Something is incorrect on the line
--the compiler could not determine a proper error message.)
The code is
The error appears on the '#IF (%WIN9x=1) THEN'
statment, and triggers even if switched to
#IF (%WIN9x=1)
#IF %WIN9x THEN
or
#IF %WIN9x
Seems pretty simple. So does anyone see the problem?
------------------
Michael Burns
http://www.revise.com
in the face, but I just don't see it.
I've just added a conditional (#IF) to my
source code, and just get a
Syntax Error 477. (Syntax error - Something is incorrect on the line
--the compiler could not determine a proper error message.)
The code is
Code:
%WIN9x=1 #IF (%WIN9x=1) THEN #INCLUDE "SERVICE.INC" ' For Win 95,98,ME #ELSE #INCLUDE "SERVNT.INC" ' For Win NT,2k #ENDIF
statment, and triggers even if switched to
#IF (%WIN9x=1)
#IF %WIN9x THEN
or
#IF %WIN9x
Seems pretty simple. So does anyone see the problem?
------------------
Michael Burns
http://www.revise.com
Comment