The Tutorial Will Teach You How To Make A Notepad With Words Counting
If You Can't See The Codes,Heres The Codes:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
TextBox1.Height = Me.Height
TextBox1.Width = Me.Width
End Sub
Private Sub Form1_Resize(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Resize
'setup resizing
TextBox1.Height = Me.Height
TextBox1.Width = Me.Width
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
Label1.Text = TextBox1.Text.Count.ToString
End Sub
End Class
There Will Be Full Version Video Download,Uploading...XD