I'm not sure where to post this, it's VBA for an Access Database.
I have this in a code section, and it's selecting "text" in the function's code and highlighting the function declaration, telling me that it has an "Invalid Qualifier".
Is this the right place to post?Code:Private Function Escape(ByVal text As String) As String
Escape = text.Replace("'", "{QUOT}").Replace(vbCrLf, "{CRLF}").Replace(vbCr, "{CR}").Replace(vbLf, "{LF}")
End Function
