Newbie. I have a menu with a checkbox (chkHamburger), a combobox for the quanity (cboHamburger). When I click the check box for Hamburger and select the Quanity, I would like for it to be displayed in the List View box. Below is the code I have written my my button click event.

Dim dblHamburger As Double
cboHamburger2.SelectedIndex = -1

If chkHamburger.Checked = True Then
Select Case cboHamburger2.SelectedIndex
Case 0
dblHamburger = 1.99
Case 1
dblHamburger = 2 * 1.99
Case 2
dblHamburger = 3 * 1.99
Case 4
dblHamburger = 4 * 1.99
Case 5
dblHamburger = 5 * 1.99
End Select
Else
dblHamburger = 0.0
End If



If I send this to a messagebox I get zero when i select any quanity:

MessageBox.Show(dblHamburger)