to get the correct toggle to show up, you must first hide the checkbox,
set its value, and then show it.

this code always sets it to false:
FrmHideObject(frm, chk);
FrmSetControlValue(frm, chk, 0);
FrmShowObject(frm, chk);

if you dont hide it and reshow it, then the check wont get drawn in
FrmSetControlValue();

:P

Reply via email to