private void LoadRoles() { try { cbRole.Items.Clear(); using (DataStuff sn = new DataStuff()) { DataTable dt = sn.GetRoles(); if (dt.Rows.Count > 0) { foreach (DataRow row in dt.Rows) { cbRole.Items.Add(row["RoleName"].ToString()); } } } } catch { } }