Ejemplo n.º 1
0
        private void PopupExportTableForm(AggregationDesign aggrD)
        {
            //MeasureGroup cloneMG = null;
            //if (mg != null)
            //    cloneMG = this.cloneDB.Cubes[mg.Parent.ID].MeasureGroups[mg.ID];
            AggManager.ExportTable form1 = new AggManager.ExportTable();
            form1.Init(aggrD);

            DialogResult res = form1.ShowDialog(this);

            if (res != DialogResult.OK)
            {
                return;
            }
        }
Ejemplo n.º 2
0
        private void PopupExportTableForm(AggregationDesign aggrD)
        {
            //MeasureGroup cloneMG = null;
            //if (mg != null)
            //    cloneMG = this.cloneDB.Cubes[mg.Parent.ID].MeasureGroups[mg.ID];
            AggManager.ExportTable form1 = new AggManager.ExportTable();
            form1.Init(aggrD);

            DialogResult res = form1.ShowDialog(this);
            if (res != DialogResult.OK) return;

        }