Next record update from current record

  • Thread starter Thread starter Thomas Simsion
  • Start date Start date
T

Thomas Simsion

I have a form that has a record next service date I want the next record to
use the data in the field current service date. I.E. Current service date is
picked up from previous record next service date Can anyone help with an
example.
 
Put the following code in the AfterUpdate event of the service date textbox:

Me!NameOfServiceDateTextBox.DefaultValue = Me!NameOfServiceDateTextBox
 
What have I done wrong
Private Sub ServiceDate_AfterUpdate ( )
Me!ServiceDate.DefaultValue = Me!Link From Outher Control
Link From Outher Control Goes into the Previouse record Labeled Next Service
date.
 
Back
Top