Now date from Frame

  • Thread starter Thread starter ladybug via AccessMonster.com
  • Start date Start date
L

ladybug via AccessMonster.com

I have a frame called "fram_approv_notapprov." Within this frame are two
option buttons. The first option button is approved which = 1. The second
option button is notapproved which =2.
I then have a text box for a date, called approv_notapprov_dt. Once either
of the selections are made in the frame I want now() to be added as the date
and time in the date text box.

What is this code and where would I put it? Thanks!!
 
Me.txtDateControl = Now()

...in the AfterUpdate event of the OptionGroup. Using your control names of
course. No IF required since you do not care which selection was made.
 
THANKS!
Me.txtDateControl = Now()

...in the AfterUpdate event of the OptionGroup. Using your control names of
course. No IF required since you do not care which selection was made.
I have a frame called "fram_approv_notapprov." Within this frame are two
option buttons. The first option button is approved which = 1. The second
[quoted text clipped - 4 lines]
What is this code and where would I put it? Thanks!!
 
Back
Top