I've been working on this program for the past two hours and I'm completely stumped. In short, the user is to enter in a population in the first text box and a growth rate in the second text box. The program then calculates the population and difference in population for the next 75 years and displays it in a third text box. Here is a screenshot of what the program is supposed to look like:

This is what my code looks like so far:
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Dim num As Double = System.Convert.ToDouble(TextBox1.Text)
Dim num1 As Double = System.Convert.ToDouble(TextBox2.Text)
Dim num2 As Double = num1 / (100 + 1)
TextBox3.Text = "Year Population Increase"
Dim num3 As Integer = 1
While num3 <= 75
Dim num4 As Double = num
num = num * num2
Dim num5 As Double = num - num4
Dim text As String = TextBox3.Text, "" & vbCrLf & "", num3.ToString(), " ", num.ToString("F"), " ", num5.ToString("F")
TextBox3.Text = System.Convert.ToString(text)
num3 = num3 + 1
End While
End Sub
I can't seem to figure how I can combine the "Year Population Increase" with the calculations in my while loop. If somehow can point me in the right direction as to how I can accomplish this, that would be greatly appreciated.
Thanks in advance!
For n As Integer = 1 To 75instead of a Do/While loop