Syntax
| SQL.TextValue(Nork[, UseWildCards][, UseRTF])
| ||||||||
---|---|---|---|---|---|---|---|---|---|
Description
| Converts a string value to a string value in formatted SQL text, including optional wildcards.
| ||||||||
See Also
| |||||||||
Example
| Sub Main() MsgBox SQL.TextValue("Wat 'n mooie dag", True) ' "'%wat ''n mooie dag%'" MsgBox SQL.TextValue("Prijs:" & Chr$(9) & "123,34" & _ vbNewLine & "------" & Chr$(9) & "------", , True) ' "'Prijs \tab 123,34 \par ------ \tab ------'" End Sub | ||||||||