Thank John I didnt realize I could do that. How does the data the user enetered get into the table?

I thought i saw in another post you responded too that it was entered as the user tabbed through the dgv cells and you recommened using a bindingsource? Apparently I am mistaken or not impelmenting it correctly. Me datatable is empty. I beleive I stiill need to add the row?

vb Code:
  1. Me.DataGridView1.Columns.Add("FullStreetAddress", "FullStreetAddress")
  2.         Me.DataGridView1.Columns.Add("City", "City")
  3.         Me.DataGridView1.Columns.Add("State", "State")
  4.         Me.DataGridView1.Columns.Add("Zip", "Zip")
  5.         Me.DataGridView1.Columns.Add("Bedrooms", "Beds")
  6.         Me.DataGridView1.Columns.Add("Baths", "Baths")
  7.         Me.DataGridView1.Columns.Add("BuildingSize", "BuildingSize")
  8.         Me.DataGridView1.Columns.Add("Lot Size", "LotSize")
  9.         Me.DataGridView1.Columns.Add("ListPrice", "ListPrice")
  10.         Me.DataGridView1.Columns.Add("ListingDate", "ListDate")
  11.         Me.DataGridView1.Columns.Add("ListingType", "ListType")
  12.         Me.DataGridView1.Columns.Add("Latitude", "Latitude")
  13.         Me.DataGridView1.Columns.Add("Longitude", "Longitude")
  14.         Me.DataGridView1.Columns.Add("GLAMax", "GLAMax")
  15.  
  16.         Me.DataGridView1.DataSource = Me.BindingSource1
  17.         Me.BindingSource1.DataSource = dtlist