hello friends
Can someone please explain me the 5th line.

VB Code:
  1. Private Sub cmdgrowth_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdgrowth.Click
  2.         Dim pop As Double = 1125000
  3.         Const yr As Integer = 2005
  4.         Dim year As Integer
  5.         Dim fmtstr As String = "{0,4}{1,10:N0}"
  6.         lstGrowth.Items.Clear()
  7.         lstgrowth.Items.Add(String.Format(fmtstr, " Year", " Population"))
  8.         For year = yr To yr + 7
  9.             lstgrowth.Items.Add(String.Format(fmtstr, year, pop))
  10.             pop += 0.019 * pop
  11.         Next
  12.     End Sub

Thanks a lot guys