i have this code to add spaces between some symbols in a text box
VB Code:
With txtFileText .Text = Replace(.Text, ">", " > ") .Text = Replace(.Text, "<", " < ") .Text = Replace(.Text, ".", " . ") '.Text = Replace(.Text, """, " " ") End With
what should i change in the last replacment to let me add spaces for the symbol "




Reply With Quote