Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I search a method

Status
Not open for further replies.

Ultdrake

Programmer
Joined
Jul 15, 2002
Messages
19
Location
CA
I'm searching a method or function to change accentuate
caracter to normal caracter in a string. Or a propriety
for combo box do same kind of effect...

exemple: É to E, î to i...

This will be do before insert in a database.

Thanks, Fred
 
See Replace.

strNew = Replace(strIn,"É","E",,,vbTextCompare)
strNew = Replace(strNew,"î ","i",,,vbTextCompare) Forms/Controls Resizing/Tabbing Control
Compare Code (Text)
Generate Sort Class in VB or VBScript
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top