Public Class Form1 Private Sub lstWashType_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lstWashType.SelectedIndexChanged Select Case lstWashType.SelectedIndex Case Is = 0 'Standard was selected With lstInterior.Items .Clear() .Add("Fragrance") End With cboFragranceType.SelectedIndex = -1 Case Is = 1 'Deluxe was selected With lstInterior.Items .Clear() .Add("Fragrance") .Add("Shampoo Carpets") cboFragranceType.SelectedIndex = -1 End With Case Is = 2 'Executive was selected With lstInterior.Items .Clear() .Add("Fragrance") .Add("Shampoo Carpets") .Add("Interior Protection Coat") cboFragranceType.SelectedIndex = -1 End With Case Is = 3 'Luxury was selected With lstInterior.Items .Clear() .Add("Fragrance") .Add("Shampoo Carpets") .Add("Shampoo Upholstery") .Add("Scotch Guard") cboFragranceType.SelectedIndex = -1 End With End Select End Sub Public Sub New() ' This call is required by the Windows Form Designer. InitializeComponent() ' Add any initialization after the InitializeComponent() call. End SubEnd ClassCAN SOMEONE PLEASE RESPOND ASAP?
THANKS,
CASSANDRA