private void Buscar_Click(object sender, EventArgs e) { if (valido()) { string nombreCliente = nombre.Text; string apellidoCliente = apellido.Text; int dniCliente = Convert.ToInt32(dni.Text); GD2C2015DataSet.ClientesDataTable cliente = this.clientesTableAdapter1.GetDataByDniNombreApellido(dniCliente, nombreCliente, apellidoCliente); if (cliente.Count() == 0) { MessageBox.Show("No se encontró el cliente"); } else if (cliente.Count() > 1) { MessageBox.Show("Error en el sistema, contacte a un administrador"); } else { int clienteId = cliente.First().cli_id; int clienteDni = cliente.First().cli_dni; if (retorno == "Consulta") { ConsultaMillasForm form = new ConsultaMillasForm(clienteId, clienteDni); form.MdiParent = this.MdiParent; form.Show(); this.Close(); } else { CanjeMillasForm form = new CanjeMillasForm(clienteId, clienteDni); form.MdiParent = this.MdiParent; form.Show(); this.Close(); } } } }
private void consultaDeMillasToolStripMenuItem_Click(object sender, EventArgs e) { ConsultaMillasForm form = new ConsultaMillasForm(0, 0); form.MdiParent = this; form.Show(); }