private void btn_novo_Click(object sender, EventArgs e) { Form_Cliente_Cadastro cadastro = new Form_Cliente_Cadastro(this); cadastro.tbx_codigo.Text = (bus.novo_codigo_bus() + 1).ToString(); cadastro.tbxEmpresaFoco(); cadastro.ShowDialog(); }
private void btn_editar_Click(object sender, EventArgs e) { int codigo = Convert.ToInt32(dgv_lista_clientes.CurrentRow.Cells[0].Value); try { Form_Cliente_Cadastro cadastro = new Form_Cliente_Cadastro(this); cadastro.tbx_codigo.Text = codigo.ToString(); cadastro.edita_dados = true; cadastro.tbxEmpresaFoco(); cadastro.ShowDialog(); } catch (Exception erro) { throw erro; } }