Run time Error 2448

G

gvaughn

I am attempting to change the value of a field with a click_event
When the Regrind_Click happens I need the Me.DISPOSED field that is a Yes/No
to change from 0 to -1. Everything I have tried has resulted in an error.
Can anyone please help. Thank youa
 
P

Paul Shapiro

What is the exact error you get? What version of Access and is it up to date
on Service Packs and hotfixes?

You could try a couple of alternative expressions:
1. Me!Disposed = True (field names as a form property are more reliably
expressed with the ! operator than the dot)
2. Me.chkDisposed.Value = True (replace chkDisposed with the name of the
checkbox control which has this field as its control source)
 
Top