Combox load & Listview load for our application is one of the most important task in our Development. For ComboBox: private void LoadVendorTYpeComboBox() { vendorTYpecomboBox.Items.Clear(); ObjVendorTypeList = ObjBvendorType.GetAllVendirType(); foreach (EVendorType obj in ObjVendorTypeList) { vendorTYpecomboBox.Items.Add(obj.VendorType); } } For ListView: private void LoadVendorTypeListView() { vendorTypelistView.Items.Clear(); ...
Work smarter, not harder.