I want to count the spaces for every space existence in the text-field.
This is my function:
Private Sub btncntspace_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btncntspace.Click
txtcountspace.Text = txttyping.Text.Length(" ").ToString
End Sub