private void mantenimientosSedeToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SedesLogistica frm = new SedesLogistica();

            frm.MdiParent = this;
            frm.Show();
            Application.DoEvents();
            frm.Location = new Point((this.Width - frm.Width) / 2, 0);
        }
        private void mantemientoSedesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SedesLogistica mant = new SedesLogistica();

            mant.MdiParent = this;
            mant.Show();
            Application.DoEvents();
            mant.Location = new Point((this.Width - mant.Width) / 2, 0);
        }