private void cmdListadoEstadistico_Click(object sender, EventArgs e)
        {
            ListadoEstadisticoForm frm = new ListadoEstadisticoForm();

            frm.Show();
            //this.Enabled = false;
        }
Exemplo n.º 2
0
        private void toolStripLabelTopPasaje_Click(object sender, EventArgs e)
        {
            this.IsMdiContainer = true;
            ListadoEstadisticoForm recorridosConMasPasajes = new ListadoEstadisticoForm();

            recorridosConMasPasajes.MdiParent = this;
            recorridosConMasPasajes.Show();
        }