D
Darrin
Hi,
I have a pull down box on a form that when the user makes
a selection the date field and time field is populated
with the current date/time. As in:
Private Sub BTRecdBy_AfterUpdate()
Me.BTRecdDate = Date
Me.BTRecdTime = Time
End Sub
But I would like to have this pass through all records on
the form and I am having trouble with working with
recordsets. The form's name is: frmReceivedData. The
form's control source is: qryReceivedData
So, how would the code be written to have it so when the
user makes a selection from "ReceivedBy" pull-down box...
the date field and time field would be populated for all
the records shown on the form?
Thanks for the help!
I have a pull down box on a form that when the user makes
a selection the date field and time field is populated
with the current date/time. As in:
Private Sub BTRecdBy_AfterUpdate()
Me.BTRecdDate = Date
Me.BTRecdTime = Time
End Sub
But I would like to have this pass through all records on
the form and I am having trouble with working with
recordsets. The form's name is: frmReceivedData. The
form's control source is: qryReceivedData
So, how would the code be written to have it so when the
user makes a selection from "ReceivedBy" pull-down box...
the date field and time field would be populated for all
the records shown on the form?
Thanks for the help!