I need to be able add a check to a check box in a database without using the data control.
Anyone know how?
Thanks in advance!
Printable View
I need to be able add a check to a check box in a database without using the data control.
Anyone know how?
Thanks in advance!
You can do it by assigning the values to the check box (0 for unchecked and 1 for checked)
Like this.
if rs("Active")=True then
checkbox1.value=1
else
checkbox1.value=0
end if