Run time Error 2448

  • Thread starter Thread starter gvaughn
  • Start date Start date
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
 
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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top