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 Form_Load()
Dim strSource As String
'some code to loop and create a semiColon seperated string
'example
Const dtmDate = #12/19/2010#
Dim i As Integer
For i = 0 To 6
If strSource = "" Then
strSource = Format(dtmDate + i, "dddd")
Else
strSource = strSource & ";" & Format(dtmDate + i, "dddd")
End If
Next i
Me.cmbo1.RowSourceType = "value list"
Me.cmbo1.RowSource = strSource
End Sub