Hi!
it seems I'm not familiar enough with basic Access terminology, because I misunderstood the term 'Control' in your questions... Sorry for that. They make me run here, before I can walk...
Your solution worked.. the combo box list is restricted to the stations on the selected transect. Thank you very much for your help.
Now, next... the After update event...
I've tried the following (which I adapted from an example in the Access help files):
Code:
Private Sub Transect_AfterUpdate()
Dim ctlCombo As Control
' Return Control object pointing to a combo box.
Set ctlCombo = Forms![Input sessions]![Visit Info1]![Mammal observations].Form![Closest Transect Station]
' Requery source of data for list box.
ctlCombo.Requery
End Sub
But it gives the error 'The field Mammal observations that is being referred at in the expression could not be found' (or something similar - translation from dutch here)...
so again a referencing problem?