How do I give a checkbox a checked image? I tried using code like "If (Condition) Then Me!Checkbx = False End If", but I get an error message about not being able to assign a value.
You can make a checkbox blank by making it NULL... a messy way would then be to Me!Checkbx = Not Null I'm sure there's a nicer way to do it, tho. Jennifer Sigman
Code-borrower extraordinaire
"They call us public servants for a reason..."
Hmmm... might want to post the whole code here, it'll make it easier to debug. Jennifer Sigman
Code-borrower extraordinaire
"They call us public servants for a reason..."
On your Else... should be the same as the first one, I think... in other words:
If M = Null Then
Me!CheckM1 = Null
Else
Me!CheckM1 = Not Null Jennifer Sigman
Code-borrower extraordinaire
"They call us public servants for a reason..."
also, make sure that the field is able to be changed by hand... if it not able to be changed by hand, make it able to... then test your code... i have a feeling your problem is with the field being protected in some way...
--junior JHauge@jmjpc.net
Life is change. To deny change is to deny life.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.