private void cbEstado_Leave(object sender, EventArgs e) { cbEstado.SelectedIndex = cbEstado.FindStringExact(cbEstado.Text); if (cbEstado.Text.Trim() != "" && cbEstado.SelectedIndex == -1) { Geral.Pergunta("Estado não cadastrado deseja cadastrar agora?"); if (Geral.Resposta) { string NovoEstado = cbEstado.Text; frmCadEstado frm = new frmCadEstado(); frm.txtEstado.Text = cbEstado.Text; frm.ShowDialog(); CarregarEstados(); cbEstado.SelectedIndex = cbEstado.FindStringExact(NovoEstado); } } }
private void btnAddEstado_Click(object sender, EventArgs e) { frmCadEstado frm = new frmCadEstado(); frm.ShowDialog(); }