primetime692004
Member
- Joined
- Jan 24, 2005
- Messages
- 10
- Programming Experience
- Beginner
im stiill having problems from my previous post i relaly dunno what to do i tried using the break points and i got the values 0D for both of them so maybe i must have it declared somewhere or somethin could someone please help me out it seems theres just one problem that i keep makin but i dunno what it is..here is the exact code i got so far
'Dimension the module level variables
Dim mdecFinalAmount As Decimal I use module level for running totals right cuz ya my balance in the label is a running total
Private Sub btnCalculate_Click....
'Dimension the procedural variables
Dim decDepositPrice As Decimal
Dim decServiceChargePrice As Decimal
Dim decCheckPrice As Decimal
Calculate the balance with checks
If radDeposit.Checked = True Then
mdecFinalAmount += decDepositPrice
lblFinalAmount.Text = FormatCurrency(mdecFinalAmount)
End If
'Dimension the module level variables
Dim mdecFinalAmount As Decimal I use module level for running totals right cuz ya my balance in the label is a running total
Private Sub btnCalculate_Click....
'Dimension the procedural variables
Dim decDepositPrice As Decimal
Dim decServiceChargePrice As Decimal
Dim decCheckPrice As Decimal
Calculate the balance with checks
If radDeposit.Checked = True Then
mdecFinalAmount += decDepositPrice
lblFinalAmount.Text = FormatCurrency(mdecFinalAmount)
End If