I have a combobox on a subform with this code attached.
The subform is a continuous form. The Combobox updates the SortOrder field of the first record but subsequent records do not update when changed.
What am I doing wrong?
Code:
Private Sub cboProjService_Change()
If Not IsNull(Me.cboProjService) Then
Me.SortOrder.Value = Me.cboProjService.Column(3)
Me.Refresh
Me.Requery
End If
End Sub
What am I doing wrong?
Comment