private void btnImportacion_Click(object sender, EventArgs e)
        {
            Frmimportacion_qry frmp = new Frmimportacion_qry();
            frmp.pasard += new Frmimportacion_qry.pasar(EjecutarImp);
            frmp.ShowDialog();

            txtCodigo.Focus();
        }
 private void txtimport_KeyUp(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.F1)
     {
         Frmimportacion_qry frmimp = new Frmimportacion_qry();
         frmimp.pasard += new Frmimportacion_qry.pasar(ejecutarImp);
         frmimp.ShowDialog();
         txtimport.Focus();
     }
 }
        private void frmImportacion_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.N && e.Control)
            {
                Limpiar(tableLayoutPanel1);
            }
            else if (e.KeyCode == Keys.G && e.Control)
            {
                Grabar();
            }
            else if (e.KeyCode == Keys.E && e.Control)
            {
                Eliminar();
            }
            else if (e.KeyCode == Keys.B && e.Control)
            {
                Frmimportacion_qry frmp = new Frmimportacion_qry();
                frmp.pasard += new Frmimportacion_qry.pasar(EjecutarImp);
                frmp.ShowDialog();

                txtCodigo.Focus();

            }
            else if (e.KeyCode == Keys.Escape)
            {
                this.Close();
            }
        }