Date from command buttom?

  • Thread starter Thread starter Ladybird
  • Start date Start date
L

Ladybird

From a command button on a form, I want to enter the date; Date() with
format 00/00/2005 into a bound control RDATE on the form. Sounds easy
yeah...[GAHSP] for a non-coder!
 
Use the Click event procedure of the command button to assign the value to
the control.

In code, it would be:
Me.RDate = Date()

In a macro, you could use the SetValue action.
 
Back
Top