ultimatewilliam
Programmer
cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=TestDB.mdb;Persist Security Info=False"
Set rs = cn.Execute("Update WTable set WRemarks = " & txtWRemarks.text", , adCmdText)
WRemarks is a memo field. txtWRemarks multiline property set to True. This will return an error if the user would enter lots of text on the textbox txtWRemarks.
is there any other way for this? thanks.
Set rs = cn.Execute("Update WTable set WRemarks = " & txtWRemarks.text", , adCmdText)
WRemarks is a memo field. txtWRemarks multiline property set to True. This will return an error if the user would enter lots of text on the textbox txtWRemarks.
is there any other way for this? thanks.