Quote:
|
Originally Posted by Missinglinq
You need to add a textbox to your form called, for instance, ReceivedDate, formatted as a date. In the Properties box set its Control Source as RecievedDate. Then in VBA code enter:
Private Sub Recieved_Click()
Me.ReceivedDate.Value = Now()
End Sub
When you click on the Recieved checkbox the date will be placed on your form and in your table.
|
Thanks to Missinglinq and Myle for the prompt reply!
I went ahead and createda field called ReceivedDate properties set to shortdate and after placing that code to onclick event of the received checkbox and it work flawlessly.
You guys are just awsome, i know i can always count on you.
thanks again