How do you set the rs in the code below?
The source data for my Form comes from a query.
I want this function to go the next record in the form until the end of file.
Public Function AllocateMonth()
Dim rs As Recordset
Do While Not rs.EOF
if me.Start ...
...
...
...
rs.MoveNext
Loop
End Function
Thanks...
The source data for my Form comes from a query.
I want this function to go the next record in the form until the end of file.
Public Function AllocateMonth()
Dim rs As Recordset
Do While Not rs.EOF
if me.Start ...
...
...
...
rs.MoveNext
Loop
End Function
Thanks...