I am using datagridview control in my application. The datagridview control consist of two textbox column and one combobox column,Where combobox is loaded with some set of data in database is working correctly. But the issue is i want to select a default value in the combobox while loading. Please help us to solve the issue.
Loading
SylwesterPosted Jan 26, 2009, 6:47 AM
In method where you bind data to GridDataView set YourDataGrid.YourColumn as DataGridViewComboBoxColumn set ValueMember property to your default value (If DataGridView is bind to the datasource).
I hope it will help you.