|
-
Apr 13th, 2000, 11:35 PM
#1
Thread Starter
Lively Member
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!
-
Apr 14th, 2000, 06:22 PM
#2
Junior Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|