G
Guest
I have a checkbox named [count] and a command button named [update]. I would
like to make the command button set the checkbox to true when clicked. I
have tried these three things but I keep getting a Run time error 2135, this
property is read only and cant be set. What am I doing wrong? The goal of
this is to add a new record for a date and time field that has the Date() and
Time() default values to get a time stamp for the update withouth typing any
information into the record set.
update_on click
me.count = true
update_on click
if isnull (me.count) then
me.count = true
end if
update_on click
if isnull (me.date) then
me.count = true
end if
like to make the command button set the checkbox to true when clicked. I
have tried these three things but I keep getting a Run time error 2135, this
property is read only and cant be set. What am I doing wrong? The goal of
this is to add a new record for a date and time field that has the Date() and
Time() default values to get a time stamp for the update withouth typing any
information into the record set.
update_on click
me.count = true
update_on click
if isnull (me.count) then
me.count = true
end if
update_on click
if isnull (me.date) then
me.count = true
end if