S
Secret Squirrel
I was using a text field for quite some time and decided to change it to a
memo field to allow my users to have the ability to type more than 255 char.
I also have a checkbox that is set to "True" when there is data typed into
this text field. I had this code in the "AfterUpdate" event of the textbox to
put a check in the checkbox when the textfield is not null. Ever since I
changed that field from text to memo this code won't fire anymore. Is there
any reason why this won't work with a memo field? Should the code be
re-written or will it just not work with a memo field?
If IsNull(Me![CEOComments]) Then
Me!chkCEOComments = False
Else
Me!chkCEOComments = True
End If
memo field to allow my users to have the ability to type more than 255 char.
I also have a checkbox that is set to "True" when there is data typed into
this text field. I had this code in the "AfterUpdate" event of the textbox to
put a check in the checkbox when the textfield is not null. Ever since I
changed that field from text to memo this code won't fire anymore. Is there
any reason why this won't work with a memo field? Should the code be
re-written or will it just not work with a memo field?
If IsNull(Me![CEOComments]) Then
Me!chkCEOComments = False
Else
Me!chkCEOComments = True
End If