예제 #1
0
        private void RenovaciónLetraToolStripMenuItem_Click(object sender, EventArgs e)
        {
            renovaciónLetraToolStripMenuItem.Enabled = false;
            RenovacionLetra Check = new RenovacionLetra();

            Check.Show();
        }
예제 #2
0
 public RenovacionLetra()
 {
     InitializeComponent();
     renovForm          = this;
     this.StartPosition = FormStartPosition.Manual;
     this.Location      = new Point(50, 50);
     this.ControlBox    = false;
     objDocumentoDao    = new DocumentoDAO();
     gridParams();
     grdDocumento.CellClick += GrdDocumento_CellClick;
 }