private void botaoPesquisaLocacao(object sender, EventArgs e) { int campo = 0; string valor = ""; if (textloccodigo.Enabled) { campo = 1; valor = textloccodigo.Text; } if (maskedloccpf.Enabled) { campo = 2; valor = maskedloccpf.Text; } if (textlocnome.Enabled) { campo = 3; valor = textlocnome.Text; } Locacao loc = new Locacao(usuarioID); ConfirmaCliente cli = new ConfirmaCliente(loc, valor, campo); loc.Show(); cli.Show(); }
public ConfirmaCliente(Locacao l, string valor, int campo) { InitializeComponent(); loc = l; switch (campo) { case 1: consultaCodigo(valor); BotaoConfirma.Focus(); break; case 2: consultaCPF(valor); break; case 3: consultaNome(valor); break; } }
private void locaçãoToolStripMenuItem_Click(object sender, EventArgs e) { Locacao locacao = new Locacao(usuarioID); locacao.Show(); }