auto populate date field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Greeting all. On a form I have 2 combo boxes, one for month and one for
year. I also have a text box for a date. If I use the combo boxes to choose
August 2006 on my form, how can I make the text box on the form to
autopopulate to be 8/31/2006? Basically I want the date box to autopupulate
the record with the last day of the month picked by the combo boxes. Is this
possible? Thank you.
 
In the After Update events of the comboboxes, change the default value for
the text control. You will find this property under the Data tab on the
properties window.

This will be good for autopopulating records that will be entered after you
have made the change to the default value.
 
Back
Top