I'm trying to satisfy all the cases of multiple check boxes being checked at the same time. The first four 'if' statements are setting the values of each check box. Then I have started trying to do a Select-Case for multiple check boxes but it's not working. Just wondering if there is a more efficient way of doing this? Thanks.
If chkCut.Checked = True Then
serviceRate = 30.0
End If
If chkColour.Checked = True Then
serviceRate = 40.0
End If
If chkHighlights.Checked = True Then
serviceRate = 50.0
End If
If chkExtensions.Checked = True Then
serviceRate = 200.0
End If
Dim i As Integer
Select Case i
Case chkCut.Checked And chkColour.Checked
i = baseRate + 70.0
Case chkCut.Checked And chkHighlights.Checked
i = baseRate + 80.0
Case chkCut.Checked And chkExtensions.Checked
i = baseRate + 230.0