|
Displaying Source Code(s)
|
|
Remove Comma
--------------------------------------------------------------------------------
Description : Remove Commas from string
Function RemoveComma(ByVal strIn)
RemoveComma = Replace(strIn,Chr(44)," ")
RemoveComma = Trim(RemoveComma)
End Function
|
|
|