CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 1999
    Location
    Norht Carolina,USA
    Posts
    23

    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

  2. #2
    Join Date
    May 1999
    Posts
    3,332

    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


  3. #3
    Join Date
    Aug 1999
    Location
    Norht Carolina,USA
    Posts
    23

    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
  •  





Click Here to Expand Forum to Full Width

Featured