To use your example, you could use the Replace function to, er, replace the (code for the) double quote in the text with (code for the) 2 double quotes , ie
Me!Description.DefaultValue = cQuote & Replace(Me!Description.Value, Chr(34), Chr(34) & Chr(34), 1, -1) & cQuote
Alternatively, you could...