Example #1
0
 private void tlaAddFormato_Load(object sender, EventArgs e)
 {
     formato = new Banco.Formato();
     if (!formato.conectar())
     {
         this.Close();
         MessageBox.Show("Banco de dados indisponivel", "Alerta | Knoodou");
     }
     if (this.id > 0)
     {
         this.Text = "Editar gĂȘnero | Knoodou";
         string[] valores = formato.buscarUmFormato(this.id);
         inNome.Text = valores[0];
         inLanc.Text = valores[1];
         inNormal.Text = valores[2];
         btOk.Text = "Atualizar";
     }
 }
Example #2
0
 private void tlaAddFormato_Load(object sender, EventArgs e)
 {
     formato = new Banco.Formato();
     if (!formato.conectar())
     {
         this.Close();
         MessageBox.Show("Banco de dados indisponivel", "Alerta | Knoodou");
     }
     if (this.id > 0)
     {
         this.Text = "Editar gĂȘnero | Knoodou";
         string[] valores = formato.buscarUmFormato(this.id);
         inNome.Text   = valores[0];
         inLanc.Text   = valores[1];
         inNormal.Text = valores[2];
         btOk.Text     = "Atualizar";
     }
 }
Example #3
0
        private void popularTabela()
        {
            DataSet dados = new DataSet();

            if (listar.conectar())
            {
                listar.buscarFormatos().Fill(dados, "Formato");
                this.dataGridFormato.DataSource = dados;
                this.dataGridFormato.DataMember = "Formato";
                if (dataGridFormato.RowCount > 0)
                {
                    dataGridFormato.Rows[0].Selected = true;
                }
            }
            else
            {
                MessageBox.Show("Banco de dados indisponivel", "Alerta | Knoodou");
            }
        }