well i have never used checkboxes in a table, but if they act like
normal checkboxes, then you need to hide them before setting their
value, and then reshow them.

FormPtr frm = FrmGetActiveForm();
Word chk = FrmGetObjectIndex(frm, checkboxID);

FrmHideObject(frm, chk);
FrmSetControlValue(frm, chk, 1);
FrmShowObject(frm, chk);

:P

Reply via email to