/// <summary> /// Function to fill ProductCode combobox /// </summary> public void ProductCodeComboFill() { try { ProductCreationBll BllProductCreation = new ProductCreationBll(); List<DataTable> listObj = BllProductCreation.ProductCodeViewAll(cmbProductCode, true); } catch (Exception ex) { MessageBox.Show("PSRT3:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }