' Project: Simple Compound Conditions ' Programmer: Andy McCone ' Date: Oct 5th 2007 'Description: This project allows users to claim gifts ' if they have a certain balance or they ' are both from CA and have superchecking Private Sub pressMeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles pressMeButton.Click 'Allow users to choose a gift IF: 'have a balance of $10,000 or more OR 'they are from California AND have Super Checking If CInt(balanceTextBox.Text) >= 10000I Or stateTextBox.Text.ToUpper = "CA" And supercheckingCheckBox.Checked Then 'Good code, they passed the above requirements MessageBox.Show("You are eligable for gifts", "Congratulations", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) Else 'They did not pass the requirements MessageBox.Show("Sorry no gifts for you", "Darn!", MessageBoxButtons.OK, MessageBoxIcon.Information) End If End Sub End Class