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.
Me.cboDates.AddItem (Date)
Me.cboDates.AddItem (Date - 1)
Me.cboDates.AddItem (Date - 2)
expression.AddItem(Text, Index)
expression Required. An expression that returns a CommandBarComboBox object.
Private Sub Form_Load()
Dim strRowSrc As String
[COLOR=red]Me.cboPicDate.RowSource = Date - 1 & ";'" & Date & "'" & ";'" & Date + 1 & "'"[/color]
Me.cboPicDate.Requery
End Sub
Private Sub Form_Current()
If Me.NewRecord Then
[COLOR=red]Me.cboPicDate.DefaultValue = "'" & Date & "'"[/color]
End If
End Sub
[blue] Dim x As Integer, curDate As String, RowSrc As String
For x = -2 To 0
curDate = Format([purple][b]Date + x[/b][/purple], "mm/dd/yyyy")
If RowSrc = "" Then
RowSrc = curDate
Else
RowSrc = RowSrc & ";" & curDate
End If
Next
Me!CBx1.RowSource = RowSrc[/blue]
SELECT TOP 3 Date()-digitid+1 AS Expr1
FROM digits
WHERE (((digits.DigitID)<7) AND ((DatePart("w",Date()-[digitid]+1)) Between 2 And 6));
Give a man a fish feed him for one day. Teach him how to fish feed him for a lifetime