Visual basic coding - replacing text?

Joshua Seville

New member
Taking a visual basic class and very new to it. I got the calculation to show up, but the old number still remains. Whats the code to remove the old number and replace it with new number in a text box using a one dimension array
txtReport.Text = txtReport.Text & int1 * intRate (for calculation)
Dim intBonus() As Integer = {12400, 1500, 1600, 2790, 1000, 6300, 1300, 2700} (one dimensional array)
 
Back
Top