anonymous
2008-02-12 21:05:30 UTC
Ive tried the chkAdd.checked = false
and thats just makes the check not appear in the check box when i click it
My Code for one of the sections is..
Private Sub chkAdd_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles chkAdd.Click
'declare local variables
Dim dblFirstNum As Double 'FirstNumber to add
Dim dblSecondNum As Double 'SecondNumber to add
Dim dblAnswer As Double 'Sum of FirstandSecond
'import data from interface
dblFirstNum = CDbl(txtFirstNum.Text)
dblSecondNum = CDbl(txtSecondNum.Text)
'calculations
dblAnswer = dblFirstNum + dblSecondNum
'display results
lblAddAns.Text = dblAnswer
I need to know how to make the value in the label for lets say add answer go away when I click the check again