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:
Me.DataGridView1.Columns.Add("FullStreetAddress", "FullStreetAddress") Me.DataGridView1.Columns.Add("City", "City") Me.DataGridView1.Columns.Add("State", "State") Me.DataGridView1.Columns.Add("Zip", "Zip") Me.DataGridView1.Columns.Add("Bedrooms", "Beds") Me.DataGridView1.Columns.Add("Baths", "Baths") Me.DataGridView1.Columns.Add("BuildingSize", "BuildingSize") Me.DataGridView1.Columns.Add("Lot Size", "LotSize") Me.DataGridView1.Columns.Add("ListPrice", "ListPrice") Me.DataGridView1.Columns.Add("ListingDate", "ListDate") Me.DataGridView1.Columns.Add("ListingType", "ListType") Me.DataGridView1.Columns.Add("Latitude", "Latitude") Me.DataGridView1.Columns.Add("Longitude", "Longitude") Me.DataGridView1.Columns.Add("GLAMax", "GLAMax") Me.DataGridView1.DataSource = Me.BindingSource1 Me.BindingSource1.DataSource = dtlist




Reply With Quote