jamaarneen
Programmer
Hi,
when i open the form, i would like the form should go to a specific record.
the form is bound to a date-field (named ReqDel_Date), and i would like that the record containing the current date (if no current - the the next) should get the focus.here is what i tried, but no result:
Code:
Dim rs As Recordset
Set rs = Me.Recordset
rs.FindFirst "ReqDel_Date = #" & Format(Date, "yyyy-mm-dd") & "#"
Thank you Ja