Posted by member 212670 on 2006-12-12 16:35:37 link
The IF/ENDIF block isn't failing. xTaskbarX is already defined, so it's discarding the next one found. If for some reason you want to use a variable in the xTaskbarX definition, then use a different name.
SomeOtherName 100
IF volume
xTaskbarx $100+SomeOtherName$
ELSE
xTaskbarx $200+SomeOtherName$
ENDIF
But, if SomeOtherName is going to be static, I don't see the point in it in the first place.
SomeOtherName 100
IF volume
xTaskbarx $100+SomeOtherName$
ELSE
xTaskbarx $200+SomeOtherName$
ENDIF
But, if SomeOtherName is going to be static, I don't see the point in it in the first place.