Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim a, s as string
s = " "
a = split(textbox1.text, s)
for i = 0 to 4
Textbox2.text = textbox2.text & a(i) & s
next
textbox2.text = trim(textbox2.text)
Private Sub Textbox1_Change()
Dim cWords() as String
cWords = Split(TextBox1.Text, " ")
If (uBound(cWords) >= 4) Then
TextBox2.Text = cWords(0)
For i = 1 To 4
TextBox2.Text = TextBox2.Text & " " & cWords(i)
Next
End If
End Sub