Jason Velez CS13 Final Public Class Form1 Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click 'Multiply 2 values into listbox' Dim first As Double Dim second As Double Dim sign As String Val (listbox) * (listbox) End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click 'Add 2 Values to the listbox" Dim first As Double Dim second As Double Dim sign As String Val (ListBox) + Val (ListBox) End Sub Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged 'Equal The sum' 'Multiply from the sum' Sum = Val(ListBox) + (ListBox) Sum = Val(ListBox) * (ListBox) End Sub Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click 'Change Form to Green with button 4" BackColor = System.Drawing.ColorTranslator.FromHtml("#" & Green & "#00FF00") End Sub End Class