I'm using access2000. I have a form frmPayBills with a date field DatePaid and when you click on the field to change the date the format changes. How can I correct this? The forms record source is:
SELECT [tblBillDetails].[BillDetailsID], [tblBillDetails].[BillID], [tblBillDetails].[DatePaid], [tblBillDetails].[AmountPaid], [tblBillDetails].[PaymentMethod] FROM tblBillDetails;
DatePaid in tblBillDetails is setup as a date field with the format mm/dd/yy. The input mask is set to 99/99/00;;_
When the form frmPayBills is opened it shows up as mm/dd/yy which is correct but as soon as I click in the field to change the date the format is changed to long format. If I remove the time and leave nothing but mm/dd/yy it accepts the change. If I leave even a space it gives me an error.
What am I missing??
Thanks
SELECT [tblBillDetails].[BillDetailsID], [tblBillDetails].[BillID], [tblBillDetails].[DatePaid], [tblBillDetails].[AmountPaid], [tblBillDetails].[PaymentMethod] FROM tblBillDetails;
DatePaid in tblBillDetails is setup as a date field with the format mm/dd/yy. The input mask is set to 99/99/00;;_
When the form frmPayBills is opened it shows up as mm/dd/yy which is correct but as soon as I click in the field to change the date the format is changed to long format. If I remove the time and leave nothing but mm/dd/yy it accepts the change. If I leave even a space it gives me an error.
What am I missing??
Thanks