Go to the layout:ready event for the field and modify the date format.
The default FormCalc is as follows:
$.rawValue = num2date(date(), DateFmt(1))
Replace DateFmt(1) with the applicable format. For example,
$.rawValue = num2date(date(),"MM/DD/YYYY")
Steve