I am trying to bind a column in my datatable into a column in the list view.
The code below:
ListView.DataBindings.Add("Columns(0).Text", tb_Areas, "Area")
Returns the error:
Can't bind to property 'Columns(0).Text' on target control.
I am not specifing the property to bind to correctly - how does one specify a column in the ListView.
