I have 2 synchronized combo boxes named group & Title. The synchronize works perfectly using
Private Sub group_AfterUpdate()
Me.Title.RowSource = "SELECT TitleName FROM" & _
" Title WHERE GroupID = " & Me.group & _
" ORDER BY TitleName"
Me.Title = Me.Title.ItemData(0)
End Sub
I want to populate a text box named price from the choice in the 2nd combo.I´ve tried
Title AfterUpdate()
Me.Price = Me.Title(2)
but I cannot seem to get itto work.Can anybody help please?
Private Sub group_AfterUpdate()
Me.Title.RowSource = "SELECT TitleName FROM" & _
" Title WHERE GroupID = " & Me.group & _
" ORDER BY TitleName"
Me.Title = Me.Title.ItemData(0)
End Sub
I want to populate a text box named price from the choice in the 2nd combo.I´ve tried
Title AfterUpdate()
Me.Price = Me.Title(2)
but I cannot seem to get itto work.Can anybody help please?