mkelly Registered User. Local time Today, 14:18 Joined Apr 10, 2002 Messages 213 Aug 14, 2003 #1 I have a form with a check box that is checked when a file is returned. How can I make it so once the check box is checked it will auto fill the date in a text box called "date Returned"? thanks in advance
I have a form with a check box that is checked when a file is returned. How can I make it so once the check box is checked it will auto fill the date in a text box called "date Returned"? thanks in advance
dcx693 Registered User. Local time Today, 15:18 Joined Apr 30, 2003 Messages 3,263 Aug 14, 2003 #2 In the AfterUpdate event of the checkbox If Me.chkBox Then Me![dateReturned]=Date() End If where chkBox is the name of your checkbox.
In the AfterUpdate event of the checkbox If Me.chkBox Then Me![dateReturned]=Date() End If where chkBox is the name of your checkbox.
mkelly Registered User. Local time Today, 14:18 Joined Apr 10, 2002 Messages 213 Aug 15, 2003 #3 I tried this but I get an error that the macro ifme does not exsist? Any suggestions