K
Krisse
cboFacility is a text field, and the following doesn't
but " " around the results of Me.cboFacility into the data
source of cboBasepath. If I go there and put the " " in,
my second combo box works.
Any ideas? THANKS!
Private Sub cboFacility_AfterUpdate()
Me.cboBasepath.RowSource = "SELECT Basepath FROM
tblFacilityBasepath " & _
"WHERE FacilityCode = " & "" & Me.cboFacility & ""
Me.cboBasepath = Me.cboBasepath.ItemData(0)
End Sub
but " " around the results of Me.cboFacility into the data
source of cboBasepath. If I go there and put the " " in,
my second combo box works.
Any ideas? THANKS!
Private Sub cboFacility_AfterUpdate()
Me.cboBasepath.RowSource = "SELECT Basepath FROM
tblFacilityBasepath " & _
"WHERE FacilityCode = " & "" & Me.cboFacility & ""
Me.cboBasepath = Me.cboBasepath.ItemData(0)
End Sub