I am able to fill a second combo box from the choice in the first but when I pick an item from the second box it jumps to the first item in its list. what am I missing here, on the properties or something? I have done this for 2 decades or so I though but now 2010 is throwing me for a loop.
I even deleted the box and made another one.
DougP
I even deleted the box and made another one.
Code:
Private Sub Combo0_AfterUpdate()
Dim SQLString As String
SQLString = "Select Manager, VPName from dbo_SOWManagersTEST " & _
"Where VPName = '" & Me.Combo0 & "';"
Me.Combo4.RowSource = SQLString
Me.Combo4.Requery
End Sub
DougP