If you go into your form and click the list box you will see some code appear like this:
Private Sub Cust_Details_Change()
End Sub
Place a case statement in here for each item in your list box:
Private Sub Larder_Prep_Change()
Select Case Larder_Prep.Text
Case "Bakery"
Call Routine to do bakery
Case "Fry-Ups"
Call Yumm
Case Else
'*
'* .... Mans Work
'*
Call Do_Washing_Up
End Select
End Sub
You then put the routines to do whatever in as sub routines between Sub.. End Sub.... commands.
Check out pressing the F1 key while in the VB Editor - it tells you a lot!
Regards
Rich
Bookmarks