Hi All
If i have ACT block with four line for expression inside it,how can ignore or pending one of them from execution but without delete it
Hi Hassan, You just have to enter "REM" in beginning of the line which needs to be ignored. For example:- OUT1 := IN1.CV This line needs to be ignored so you enter REM OUT1 := IN1.CV
Note:- However this will only ignore that particular line number. If you want to ignore a whole set of expression, then
OUT1 := IN1.CV ;
OUT2 := IN2.CV ; To ignore this expression you can do this
(* OUT1 := IN1.CV ;
OUT2 := IN2.CV ; *)