|
-
August 24th, 1999, 03:45 PM
#1
TextBox with WordWrap
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
-
August 25th, 1999, 02:25 AM
#2
Re: TextBox with WordWrap
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
-
August 25th, 1999, 11:02 AM
#3
Re: TextBox with WordWrap
Lothar--Thanks for HELP!!!..That worked for ME..
W.R.Purgason, COSI, SCServices, WebCreate
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|