I need some help on this one.
I have a form that has information on an item in inventory. In that form, a subform has a list of parts ordered for that item that inclueds dates ordered, received and returned.
I would like to have a command button that will add the date to the active parts record in the subform by using the following code:
Private Sub cboReceived_Click()
Me![DateReceived] = Now()
End Sub
I have tried every way I can think of to get it to work. Any Help?
I have a form that has information on an item in inventory. In that form, a subform has a list of parts ordered for that item that inclueds dates ordered, received and returned.
I would like to have a command button that will add the date to the active parts record in the subform by using the following code:
Private Sub cboReceived_Click()
Me![DateReceived] = Now()
End Sub
I have tried every way I can think of to get it to work. Any Help?