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