Here is your function
Public Function RemoveQuotes(ByRef strIn As String) As String
Dim i As Integer
Dim strPointer As String
Dim strOut As String
For i = 1 To Len(strIn)
strPointer = Mid(strIn, i, 1)
If strPointer = Chr$(34) Or strPointer = Chr$(39) Then
Else
strOut = strOut & strPointer
End If
Next i
RemoveQuotes = strOut
End Function
Craig, mailto:sander@cogeco.ca
"Procrastination is the art of keeping up with yesterday."
I hope my post was helpful!!!