I have 2 fields on a form - StartTime and StopTime.
To prevent any gaps in time, the field "StopTime"s value is automatically copied to the next record's StartTime field.
This form in in datasheet view.The problem arises when we go back and change a "stoptime" value after a few records have been entered. It will not, at this point, change the following record's "starttime".
The code used to initially have this happen is:
If NewRecord Then
StartTime.DefaultValue = Chr(34) & StopTime & Chr(34).
How can I get the "stoptime"s value copied to the next "starttime" AFTER A CHANGE has been made to the preceeding stoptime?
Thanks in advance for any help.
To prevent any gaps in time, the field "StopTime"s value is automatically copied to the next record's StartTime field.
This form in in datasheet view.The problem arises when we go back and change a "stoptime" value after a few records have been entered. It will not, at this point, change the following record's "starttime".
The code used to initially have this happen is:
If NewRecord Then
StartTime.DefaultValue = Chr(34) & StopTime & Chr(34).
How can I get the "stoptime"s value copied to the next "starttime" AFTER A CHANGE has been made to the preceeding stoptime?
Thanks in advance for any help.
