O
One complete fool
I am getting the error message "The field is too small to accept the
amount of data...."
I know what is causing the error, but I can't seem to find a way
around it.
The code is:
Private Sub products_description_AfterUpdate()
Me.[products_head_desc_tag] = Me.[products_description]
On Error Resume Next
End Sub
products_description is memo
products_head_desc_tag is text (Len-120) - which filling is causing
the error.
products_head_desc_tag is to auto fill the description meta tag on a
dyanamically created html page. For this, I am trying to grab only
the first 120 characters of the products_description field.
Is there a way to do this without getting the error message? I
haven't been able to figure one out.
Thank you
amount of data...."
I know what is causing the error, but I can't seem to find a way
around it.
The code is:
Private Sub products_description_AfterUpdate()
Me.[products_head_desc_tag] = Me.[products_description]
On Error Resume Next
End Sub
products_description is memo
products_head_desc_tag is text (Len-120) - which filling is causing
the error.
products_head_desc_tag is to auto fill the description meta tag on a
dyanamically created html page. For this, I am trying to grab only
the first 120 characters of the products_description field.
Is there a way to do this without getting the error message? I
haven't been able to figure one out.
Thank you