Jan 12, 2004 #1 lelo25 Technical User Nov 13, 2003 40 LB Hello Is there a way to display boolean variable in forms. RGds,Elie
Jan 12, 2004 #2 lewisp Programmer Aug 5, 2001 1,238 GB The only way to do this is to programatically change the value of a displayed item according to the boolean value. eg: [tt]IF bool_value THEN :block.checkbox_item := 'Y'; ELSE :block.checkbox_item := 'N'; END IF;[/tt] Upvote 0 Downvote
The only way to do this is to programatically change the value of a displayed item according to the boolean value. eg: [tt]IF bool_value THEN :block.checkbox_item := 'Y'; ELSE :block.checkbox_item := 'N'; END IF;[/tt]