Setting default on Unbound date fields

F

FJ Questioner

I have a form with two unbound dates used for defining the date range of a
report. Is there anyway to have these two UNBOUND date fields (preferably
using a date picker) default to today's date?

Thanks.
 
O

Ofer Cohen

Use the form Load event to set the value to this fields

Me.[TextBoxName] = Date()
 
F

FJ Questioner

Great. Thanks.

Ofer Cohen said:
Use the form Load event to set the value to this fields

Me.[TextBoxName] = Date()

--
Good Luck
BS"D


FJ Questioner said:
I have a form with two unbound dates used for defining the date range of a
report. Is there anyway to have these two UNBOUND date fields (preferably
using a date picker) default to today's date?

Thanks.
 
Top