I am trying to assign a value on the ON OPEN of a form to a true/false control based on the value of another control
this is my code
Private Sub From_Open(Cancel as Integer)
If Me!
this is my code
Private Sub From_Open(Cancel as Integer)
If Me!
Code:
= "04" then
Me![Verified] = true
end if
When I open the form I get a run time error 2448 You can't assing a value to this object. Why?
L