P
Pete
Private Sub ProcessStep_AfterUpdate()
Me.Equipment.RowSource = "SELECT Equipment FROM" & _
" QryEquipment WHERE ProcessStepID = " & Me.ProcessStep & _
" ORDER BY Equipment"
Me.Equipment = Me.Equipment.ItemData(0)
End Sub
How do I store the resulting value from the above Synchronized Combo
box in a table, so that the value is remembered as part of this
particular record.
Pete
Me.Equipment.RowSource = "SELECT Equipment FROM" & _
" QryEquipment WHERE ProcessStepID = " & Me.ProcessStep & _
" ORDER BY Equipment"
Me.Equipment = Me.Equipment.ItemData(0)
End Sub
How do I store the resulting value from the above Synchronized Combo
box in a table, so that the value is remembered as part of this
particular record.
Pete