Exemple #1
0
        private void btnConsultarC_Click(object sender, EventArgs e)
        {
            frmConsultaClientes cc = new frmConsultaClientes();

            cc.Type = true;
            cc.ShowDialog();
            if (cc.IDc != null)
            {
                txtCodigoC.Text = cc.IDc;
                Clientes c = Clientes.getClientes(txtCodigoC.Text);
                if (c != null)
                {
                    txtApellido.Text   = c.apellido;
                    txtNombre.Text     = c.nombre;
                    txtTelefono.Text   = c.telefono;
                    txtCodigoC.Enabled = false;
                    lblBuscarC.Enabled = false;
                }
            }
            else
            {
                MessageBox.Show("No se selecciono ningun Automovil", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
        }
Exemple #2
0
        private void clientesToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            frmConsultaClientes cc = new frmConsultaClientes();

            cc.Show();
        }