Click to See Complete Forum and Search --> : TextBox with WordWrap


W.R.Purgason
August 24th, 1999, 03:45 PM
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

Lothar Haensler
August 25th, 1999, 02:25 AM
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

W.R.Purgason
August 25th, 1999, 11:02 AM
Lothar--Thanks for HELP!!!..That worked for ME..

W.R.Purgason, COSI, SCServices, WebCreate