Synchronize two combo boxes

Joined
Dec 4, 2008
Messages
1
Reaction score
0
Hi,

I have this code:

Private Sub cmbBU_Code_AfterUpdate()
Me.cmbPosition.RowSource = "SELECT qry_BU_Position.POSN_ID,qry_BU_Position.POSN_TITLE from " & _
"qry_BU_Position where qry_BU_Position.BU_Code= " & Me.cmbBU_Code
Me.cmbPosition = Me.cmbPosition.ItemData(0)
End Sub

And not work. What happen????

Thank,
Rlopez27
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top