private void tlaAddClienteDependente_Load(object sender, EventArgs e) { cliente = new Banco.Dependente(); if (!cliente.conectar()) { this.Close(); MessageBox.Show("Banco de dados indisponivel", "Alerta | Knoodou"); } if (this.id > 0) { string[] valores = cliente.buscarUmDependente(this.id); inNome.Text = valores[0]; dateNASC.Text = valores[1]; inParentesco.Text = valores[2]; inRg.Text = valores[3]; inCpf.Text = valores[4]; if (valores[5] == "m") { radioButton1.Checked = true; } else { radioButton2.Checked = true; } inEmail.Text = valores[6]; inMsn.Text = valores[7]; bloqueado.Checked = valores[8] != "False"; this.Text = "Editar cliente | Knoodou"; btOk.Text = "Atualizar"; } }
private void tlaAddClienteDependente_Load(object sender, EventArgs e) { cliente = new Banco.Dependente(); if (!cliente.conectar()) { this.Close(); MessageBox.Show("Banco de dados indisponivel", "Alerta | Knoodou"); } if (this.id > 0) { string[] valores = cliente.buscarUmDependente(this.id); inNome.Text = valores[0]; dateNASC.Text = valores[1]; inParentesco.Text = valores[2]; inRg.Text = valores[3]; inCpf.Text = valores[4]; if (valores[5] == "m") radioButton1.Checked = true; else radioButton2.Checked = true; inEmail.Text = valores[6]; inMsn.Text = valores[7]; bloqueado.Checked = valores[8] != "False"; this.Text = "Editar cliente | Knoodou"; btOk.Text = "Atualizar"; } }
private void popularTabelaDependentes(int cliente_id) { DataSet dados = new DataSet(); Banco.Dependente depende = new Banco.Dependente(); if (depende.conectar()) { depende.buscarDependentes(this.cliente_id).Fill(dados, "DEPENDENTE"); this.dataGridCliente2.DataSource = dados; this.dataGridCliente2.DataMember = "DEPENDENTE"; if (dataGridCliente2.RowCount > 0) { dataGridCliente2.Rows[0].Selected = true; } } else { MessageBox.Show("Banco de dados indisponivel", "Alerta | Knoodou"); } }
private void popularTabelaDependentes(int cliente_id) { DataSet dados = new DataSet(); Banco.Dependente depende = new Banco.Dependente(); if (depende.conectar()) { depende.buscarDependentes(this.cliente_id).Fill(dados, "DEPENDENTE"); this.dataGridCliente2.DataSource = dados; this.dataGridCliente2.DataMember = "DEPENDENTE"; if (dataGridCliente2.RowCount > 0) dataGridCliente2.Rows[0].Selected = true; } else { MessageBox.Show("Banco de dados indisponivel", "Alerta | Knoodou"); } }