I am trying to make a form on access which allows me to select a product from a drop down list and then the details that go with that product such as colour and description automatically come up. Beloe is the coding which I have done on each of the texts boxes which im using.
Any ideas?
Private Sub filterDescriptionTextBox_Click()
End Sub
Private Sub filterProductTextBox_Click()
End Sub
Private Sub sourceGroup_AfterUpdate()
ApplyDataSource
End Sub
Private Sub filterCategoryComboBox_AfterUpdate()
PerformFilter
End Sub
Private Sub filterDescriptionTextBox_AfterUpdate()
PerformFilter
End Sub
Private Sub filterProductTextBox_AfterUpdate()
PerformFilter
End Sub
Private Sub productTextBox_Click()
Shortcuts.viewProduct Me.[Colour]
End Sub
Thanks in advance, Dominique
What is your control field behind the Text (IE
ListBox.selected.Value)?As well is the form itself bound to a Table or View?