Hello there
well i have a list box and when you Pick one of the entrys whats supposed to happen is that the other list box is supposed to be updated. But when i click on the entry nothing happens. it works in the query. so i dont know what the problem is. the code that i have is this:
Private Sub AreaList_AfterUpdate()
[DescriptionCombo].Visible = False
End Sub
Private Sub AreaList_Click()
[DescriptionCombo].Requery
[DescriptionCombo].Visible = True
End Sub
Private Sub Form_Open(Cancel As Integer)
[DescriptionCombo].Visible = False
End Sub
i think that it is not requerying.
thanks for whatever help you can give
BT24
well i have a list box and when you Pick one of the entrys whats supposed to happen is that the other list box is supposed to be updated. But when i click on the entry nothing happens. it works in the query. so i dont know what the problem is. the code that i have is this:
Private Sub AreaList_AfterUpdate()
[DescriptionCombo].Visible = False
End Sub
Private Sub AreaList_Click()
[DescriptionCombo].Requery
[DescriptionCombo].Visible = True
End Sub
Private Sub Form_Open(Cancel As Integer)
[DescriptionCombo].Visible = False
End Sub
i think that it is not requerying.
thanks for whatever help you can give
BT24