Dear Experts
no := TRUE/false;no1:= FALSE/true;IF no<>no1 THENno12:=//here i want insert only true boolean
how i will insert true variable into no12
please dont think that silly question
thanks
DJ
no := TRUE;
no1 := FALSE; If no<>no1 THEN no12 := no;
or other way,
no := FALSE;no1 := TRUE;If no<>no1 THENno12 := no1; Is this what you need to achieve?