PDA

Click to See Complete Forum and Search --> : Adding to the database via code


brjames
Apr 13th, 2000, 11:35 PM
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!

aamer
Apr 14th, 2000, 06:22 PM
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