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.
Private Sub Command0_Click()
Dim TmpKeywords() As String
Dim tblKeywords As String
Dim LLL As String
Dim HHH As String
Dim AAA As String
Dim SSS As String
AAA = "HELLO FRED"
If Trim(AAA) > "" Then
HHH = Trim(AAA)
While InStr(HHH, " "): HHH = Replace(HHH, " ", " "): Wend
HHH = Replace(HHH, " ", ",")
LLL = LLL & HHH & ","
End If
tblKeywords = LLL
TmpKeywords = Split(tblKeywords, ",")
For i = LBound(TmpKeywords) To UBound(TmpKeywords) - 1
LKS = TmpKeywords(i)
Next i
End Sub
If Len(AAA) = Len(Replace(AAA," ","")) Then [COLOR=#4E9A06]'this is a single word[/color]