Set IList as ComboBox Datasource in C#
ComboBox is a control which let user input or select one of value from listed items .In C#.Net we can easily populate data to combo from database without complicated loops. All you need to pass the display, value member and a data table as follows cmb_handle.DataSource = Common.MaccDataset.Tables[0]; cmb_handle.DisplayMember = “product”; cmb_handle.ValueMember = “pid”; we can also use IList,…
View On WordPress












