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 myString As String, str1 As String
Dim i As Byte
myString = """" [green]' That's four double quotes
' or myString = Chr(34)[/green]
str1 = "xx"
For i = 1 To 3
myString = myString & "'" & str1 & i & "', "
Next i
myString = Left(myString, Len(myString) - 2)
myString = myString & Chr(34)
Debug.Print myString
Private Sub Combo5_LostFocus()
Dim ctl As Control
Dim varItem As Variant
Dim Str As String
Set ctl = Me.Combo5
Str = """"
For Each varItem In ctl.ItemsSelected
Str = Str & "'" & ctl.ItemData(varItem) & "', "
Next varItem
Str = Left(Str, Len(Str) - 2)
Str = Str & Chr(34)
Me.Text7 = Str
End Sub