let me give you some of my example.
my data -> 7' wood stick
so, I want to have exactly like the data above for my database field.
I tried to do this
Mid(mystring, myposition) = "'", but it still didn't work.
Any Idea?
Thanks..
Quote:
|
Originally Posted by Emmanuel
Hi,
For example if you want only one single quote as value in your datafield, try one single quote between two double quote :
NameOfRecordset.fields("NameOfDataField").value = "'"
Note that in general, the string combinations are the same with a textbox object. You can put it one on your form to see the result before to use your code on a field database.
|