
Originally Posted by
shylock
1. I have no clue why they are left justified. They a definitely formatted as short dates and short times.
2. I agree.
3. Date picker appears for the date controls only. I don't want them for the time controls.
To answer the null question, no nulls have been saved to the records in the table. The data types in the table for Begin Date, Begin Time, End Date and End Time are set to Date/Time. Could this be the problem and how can I get around this without combining the fields into date/time? For my purposes I need these fields to be separate.
If you need to requery the subform, use Me.SubformcontrolName.Requery in the button click event after running the query
You could also add the line DoEvents first to ensure the previous task has completed before requerying
Also what event should I use for the requery to update the form which lists all of the downtime events, including the new records just added? I have tried on open, on got focus, on activate and on current. None of these events occurs every time I navigate to that form.