Hi, i want to transfer every text that is entered into a textbox1, into another textbox, textbox2(which is multi line textbox).
But i want textbox2 to arrange every input it recieves from textbox one in alphabetical order. This is the code i have below
Imports Microsoft.VisualBasic.ControlChars
Imports System.IO
Public Class Form2
Inherits System.Windows.Forms.Form
Dim value1 As String
Dim value2 As String
Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
value2 = TextBox2.Text
TextBox2.AppendText(TextBox1.Text & NewLine)
TextBox1.Clear()
TextBox1.Select()
End Sub
Thanks