private void RenovaciónLetraToolStripMenuItem_Click(object sender, EventArgs e) { renovaciónLetraToolStripMenuItem.Enabled = false; RenovacionLetra Check = new RenovacionLetra(); Check.Show(); }
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; }