private void reciboDePOsINBOUNDAutomaticoToolStripMenuItem_Click(object sender, EventArgs e) { ReciboPO recibo = new ReciboPO(true, true); recibo.MdiParent = this; recibo.Show(); }
void abrirFormaRecibosPOINBOUND() { foreach (Form f in this.MdiChildren) { if (f.Name == "ReciboPO") { f.Activate(); return; } } ReciboPO forma = new ReciboPO(true); forma.MdiParent = this; forma.Show(); }