Page 1 of 1

Enablefunction only for actual file

Posted: Wed Apr 23, 2008 3:31 pm
by ts-soft
I wish to change that EnableExplicit, EnableASM, Disable ...
only works in the actual file. This is better for Includes.

Or adding a testfunction like IsEnableExplicit and so on, to restore the
Value.

greetings
Thomas

Posted: Wed Apr 23, 2008 4:05 pm
by Trond
Maybe simply nesting them? That would make new keywords unnecessary, but maybe create other problems?

Code: Select all

EnableAsm
EnableAsm
DisableAsm
; Asm is still enabled here

Posted: Wed Apr 23, 2008 4:13 pm
by ts-soft
I don't understand
I use for example:

Code: Select all

EnableExplicit

XIncludeFile "bla.pb"

; more code
Many user have at the begin of the include
EnableExplicit and at the end DisableExplicit, so my EnableExplicit
doesn't work anymore.
My wish should solve this problem

greetings
Thomas