medicenpringles
Programmer
First of all, i would like to thank the MVPs for helping me so much in my last few questions. and with that out of the way, here's my question:
I have a form with 2 check boxes, Small Cheese and Regular Cheese. When the check boxes are clicked it adds or subtracts the correct amount to/from the global total, as shown here:
but my problem is, i need to add 2 more global variables: AdditionCount (an integer), and Addition() (a string array), for addition later to a listbox.
but now when i click the checkbox, i get a NullReferenceException, highlighting the line 'Globals.Additions(Globals.AdditionCount) = "Small Cheese"'. I could understand this error if the procedure made the array -1, or nothing, but this doesn't make sense.
any help?
Main Language: Visual Basic .NET
Development Enviroment: Visual Studio .NET 2003
I have a form with 2 check boxes, Small Cheese and Regular Cheese. When the check boxes are clicked it adds or subtracts the correct amount to/from the global total, as shown here:
Code:
Private Sub chkSmallCheese_CheckedChanged(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles chkSmallCheese.CheckedChanged
If chkSmallCheese.CheckState = CheckState.Unchecked Then
Globals.OrderTotal -= Prices.prcAddChs_sm
Me.lblOrderTotal.Text = Format(Globals.OrderTotal, "c")
ElseIf chkSmallCheese.CheckState = CheckState.Checked Then
Globals.OrderTotal += Prices.prcAddChs_sm
Me.lblOrderTotal.Text = Format(Globals.OrderTotal, "c")
End If
End Sub
Code:
Private Sub chkSmallCheese_CheckedChanged(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles chkSmallCheese.CheckedChanged
If chkSmallCheese.CheckState = CheckState.Unchecked Then
[b]Globals.AdditionCount -= 1[/b]
Globals.OrderTotal -= Prices.prcAddChs_sm
Me.lblOrderTotal.Text = Format(Globals.OrderTotal, "c")
ElseIf chkSmallCheese.CheckState = CheckState.Checked Then
[b]Globals.AdditionCount -= 1[/b]
Globals.OrderTotal += Prices.prcAddChs_sm
Me.lblOrderTotal.Text = Format(Globals.OrderTotal, "c")
End If
[b]Globals.Additions(Globals.AdditionCount) = "Small Cheese"[/b]
End Sub
but now when i click the checkbox, i get a NullReferenceException, highlighting the line 'Globals.Additions(Globals.AdditionCount) = "Small Cheese"'. I could understand this error if the procedure made the array -1, or nothing, but this doesn't make sense.
any help?
Main Language: Visual Basic .NET
Development Enviroment: Visual Studio .NET 2003