C cstanley Registered User. Local time Today, 17:20 Joined May 20, 2002 Messages 86 Aug 2, 2002 #1 A quick question - how would you set up a combo box so that the default value for the next record would be what was previously selected? Thanks, Chris
A quick question - how would you set up a combo box so that the default value for the next record would be what was previously selected? Thanks, Chris
R rich.barry Registered User. Local time Today, 17:20 Joined Aug 19, 2001 Messages 176 Aug 4, 2002 #2 Use the AfterUpdate Event Private Sub Target_AfterUpdate() Me!Target.DefaultValue = Me!Target.Value End Sub
Use the AfterUpdate Event Private Sub Target_AfterUpdate() Me!Target.DefaultValue = Me!Target.Value End Sub