I am recording the employee's date_of_birth
, the year_employed
and the current_DateTime
the data is recorded (the actual date and time the user clicks save), since the company is automating its records.
There is no datepicker
or monthcalendar
control in DataWindow object which would have made it easier for the user to pick the dates.
dates
on a column?current_DateTime
in the DataWindow to the database?There is no datepicker or monthcalendar control in datawindow object which would have made it easier for the user to pick the dates.
Not exactly. You can add a drop-down calendar to help the selection of a date :
The field will have a drop-down arrow that will show you a calendar to pick a date.
You can also customize the Mask to suit your display needs.
You could define your current_DateTime
column to be not null
while setting a default value in the table to Now()
. Ignore the field completely in PB. Thus when a new record will be added from pb it will get the current time defined by the database.