J
Jeri
I'm using Access 2007, with an attachment data type field. I'm trying to
write a code that checks to see if there is a file in the field on a subform
for a particular record. If so, I want a checkbox on the form to change from
"no" to "yes." I've tried using IsNull, like this:
If IsNull(Forms![frm_Survey]![subfrm_Images].Form![Sitemap]) Then
Me.ck_ImageData = False
Else
Me.ck_ImageData = True
End If
This has worked for other data types, but not for this one. Does anyone know
of a way to do this?
Thanks for your consideration,
Jeri
write a code that checks to see if there is a file in the field on a subform
for a particular record. If so, I want a checkbox on the form to change from
"no" to "yes." I've tried using IsNull, like this:
If IsNull(Forms![frm_Survey]![subfrm_Images].Form![Sitemap]) Then
Me.ck_ImageData = False
Else
Me.ck_ImageData = True
End If
This has worked for other data types, but not for this one. Does anyone know
of a way to do this?
Thanks for your consideration,
Jeri