hi,
i was wondering where can i find or how it's called the reversion or changing chars to...i don't know how to call it...
This is what i did through an application that hepled me...
Text5.Text = pReplace(Text5.Text, "_", " ")
Text5.Text = pReplace(Text5.Text, ",", "%2C")
Text5.Text = pReplace(Text5.Text, "&", "%26")
Text5.Text = pReplace(Text5.Text, " ", "+")
Text5.Text = pReplace(Text5.Text, "(", "%28")
Text5.Text = pReplace(Text5.Text, ")", "%29")
So i replaced the standard chars with the "encoded" ones and i don't know how to get all those codes for other standard chars?
Any help?
