Help with output display

Joined
May 14, 2010
Messages
2
Reaction score
0
here is what I currently have. I am trying to get my textReport.txt to show Bonus on the first line, then the bonuses on the following lines, and then the last line show a grand total of all the bonuses.


Private Sub btnCreate_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCreate.Click
'Define Variables

Dim intSalaries() As Integer = {2400, 1500, _

1600, 2790, _

1000, 6300, _

1300, 2700}

Dim strRate As String

Dim decRate As Decimal

Dim decBonus As Decimal

Dim intCode As Integer

'Convert txtRate.text to decimal

Decimal.TryParse(txtRate.Text, decRate)

'subtract 1 from the code to get the appropriate subscript

'intSubscript = intCode - 1

'txtReport.Text = String.Empty

For intSubscript As Integer = 0 To 7

txtReport.Text = txtReport.Text & _

intSalaries(intSubscript) * decRate & ControlChars.NewLine

Next intSubscript





'txtReport.Text = decBonus(intSubscript).ToString

End Sub

End
Class

 
Joined
May 14, 2010
Messages
2
Reaction score
0
I can get my display to calculate and show the bonuses. How do I get those values to total up to an over all sum though?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top