This question is locked. New answers and comments are not allowed.
I have two columns that I want to display but the table as 10 columns. I set AutoGenerateColumns to false and I would like to bind the two colums to the specific columns through the UI, is this possible?
I see the code in the tutorial I would rather just select the field or type the field in the UI property.
I see the code in the tutorial I would rather just select the field or type the field in the UI property.
' Only display the "Description" column, not the "Products" column
gvMain.AutoGenerateColumns = False
gvMain.Columns.Add(
New GridViewDataColumn() With { _
.DataMemberBinding =
New Binding("Description"), .Header = "Category Description"})
