W Wonder3234 New member Local time Today, 15:10 Joined Jun 13, 2007 Messages 2 Jun 13, 2007 #1 Is there a way to have a text box display the date a check box on the same form is checked? I have tired using Date() with the On Click event without success.
Is there a way to have a text box display the date a check box on the same form is checked? I have tired using Date() with the On Click event without success.
boblarson Smeghead Local time Today, 15:10 Joined Jan 12, 2001 Messages 32,053 Jun 13, 2007 #2 In the afterupdate event of the check box use Me.YourTextBoxName = Date (no parentheses needed)
W Wonder3234 New member Local time Today, 15:10 Joined Jun 13, 2007 Messages 2 Jun 13, 2007 #3 That worked, thanks.