My txtAddress is to long and need wrap to second
line and cut out Spaces or blanks...Help on Code
Thanks..WR
W.R.Purgason, COSI, SCServices, WebCreate
Printable View
My txtAddress is to long and need wrap to second
line and cut out Spaces or blanks...Help on Code
Thanks..WR
W.R.Purgason, COSI, SCServices, WebCreate
set the MultiLine Property of your textbox to True.
To remove any character from any string use the VB replace function as in:
strNew = replace(text1.text, " ", "" )
text1.text = strNew
Lothar--Thanks for HELP!!!..That worked for ME..
W.R.Purgason, COSI, SCServices, WebCreate