Word Wrap Function In VB.NET

This tutorial will teach you how to have a word wrap function in vb.net. A word wrap function is a function that your text do not proceed to be written if it is so lengthy in the textbox. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one TextBox named TextBox1 that you insert text. 3. Now, we will do the coding. We will create first a function named WrapText that has a text and the number of linetext to serve as the main code for wrapping the text for this tutorial. I have the comments as an explanation (in green text) to justify those codings.
  1.     Public Function WrapText(ByVal Text As String, ByVal LineLength As Integer) As List(Of String)
  2.  
  3.         Dim ReturnValue As New List(Of String)
  4.         ' Remove leading and trailing spaces
  5.         Text = Trim(Text)
  6.  
  7.  
  8.         Dim Words As String() = Text.Split(" ")
  9.  
  10.         If Words.Length = 1 And Words(0).Length > LineLength Then
  11.  
  12.             ' Text is just one big word that is longer than one line
  13.             ' Split it mercilessly
  14.             Dim lines As Integer = (Int(Text.Length / LineLength) + 1)
  15.             Text = Text.PadRight(lines * LineLength)
  16.             For i = 0 To lines - 1
  17.                 Dim SliceStart As Integer = i * LineLength
  18.                 ReturnValue.Add(Text.Substring(SliceStart,
  19.                 LineLength))
  20.             Next
  21.         Else
  22.             Dim CurrentLine As New System.Text.StringBuilder
  23.             For Each Word As String In Words
  24.                 ' will this word fit on the current line?
  25.                 If CurrentLine.Length + Word.Length <
  26.                 LineLength Then
  27.                     CurrentLine.Append(Word & " ")
  28.                 Else
  29.                     ' is the word too long for one line
  30.                     If Word.Length > LineLength Then
  31.                         ' hack off the first piece, fill out the current line and start a new line
  32.                         Dim Slice As String =
  33.                         Word.Substring(0, LineLength - CurrentLine.Length)
  34.                         CurrentLine.Append(Slice)
  35.                         ReturnValue.Add(CurrentLine.ToString)
  36.  
  37.                         CurrentLine = New System.Text.StringBuilder()
  38.  
  39.                         ' Remove the first slice from the word
  40.                         Word = Word.Substring(Slice.Length,
  41.                         Word.Length - Slice.Length)
  42.  
  43.                         ' How many more lines do we need for this word?
  44.                         Dim RemainingSlices As Integer =
  45.                         Int(Word.Length / LineLength) + 1
  46.                         For LineNumber = 1 To RemainingSlices
  47.  
  48.                             If LineNumber = RemainingSlices Then
  49.  
  50.                                 'this is the last slice
  51.                                 CurrentLine.Append(Word & " ")
  52.                             Else
  53.                                 ' this is not the last slice
  54.                                 ' hack off a slice that is one line long, add that slice
  55.                                 ' to the output as a line and start a new line
  56.                                 Slice = Word.Substring(0,
  57.                                 LineLength)
  58.                                 CurrentLine.Append(Slice)
  59.  
  60.                                 ReturnValue.Add(CurrentLine.ToString)
  61.                                 CurrentLine = New System.Text.StringBuilder()
  62.  
  63.                                 ' Remove the slice from the
  64.  
  65.                                 Word = Word.Substring(Slice.Length, Word.Length - Slice.Length)
  66.                             End If
  67.                         Next
  68.                     Else
  69.                         ' finish the current line and start a new one with the wrapped word
  70.                         ReturnValue.Add(CurrentLine.ToString)
  71.                         CurrentLine = New System.Text.StringBuilder(Word & " ")
  72.                     End If
  73.                 End If
  74.             Next
  75.  
  76.             ' Write the last line to the output
  77.             If CurrentLine.Length > 0 Then
  78.                 ReturnValue.Add(CurrentLine.ToString)
  79.             End If
  80.         End If
  81.         Return ReturnValue
  82.     End Function
Then after that, we will call our function that we have created above to wrap the text from the textbox.
  1.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  2.         WrapText(TextBox1.Text, 30)
  3.     End Sub

Output:

output For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below. Best Regards,

Engr. Lyndon R. Bermoy
IT Instructor/System Developer/Android Developer
Mobile: 09079373999
Telephone: 826-9296
E-mail:[email protected]

Visit and like my page on Facebook at: Bermz ISware Solutions

Subscribe at my YouTube Channel at: SerBermz

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

why we should create word wrap function

It "sort of" works. But if there are blank lines in the text, they are not sent into the plain text as blank lines and often words are "joined" together.

Add new comment