Ejemplo n.º 1
0
        private void newToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            ReportWindow n = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.Services, EnumHelper.Mode.Collection);

            n.MdiParent = this;
            n.Show();
        }
Ejemplo n.º 2
0
        private void GetLogicalDiskReport()
        {
            ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.LogicalDisk);

            serviceReportWindow.MdiParent = this;
            serviceReportWindow.Show();
        }
Ejemplo n.º 3
0
        private void GetQuickFixReport()
        {
            ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.QuickFix);

            serviceReportWindow.MdiParent = this;
            serviceReportWindow.Show();
        }
Ejemplo n.º 4
0
        private void GetApplicationReport()
        {
            ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.Application);

            serviceReportWindow.MdiParent = this;
            serviceReportWindow.Show();
        }
Ejemplo n.º 5
0
        private void GetOSReport()
        {
            ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.OperatingSystem);

            serviceReportWindow.MdiParent = this;
            serviceReportWindow.Show();
        }
Ejemplo n.º 6
0
        private void GetBootReport()
        {
            ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.BootConfiguration);

            serviceReportWindow.MdiParent = this;
            serviceReportWindow.Show();
        }
Ejemplo n.º 7
0
        private void GetSharesReport()
        {
            try
            {
                ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.Shares);

                serviceReportWindow.MdiParent = this;
                serviceReportWindow.Show();
            }
            catch (Exception ex)
            {
                AMTLogger.WriteToLog(ex.Message, MethodBase.GetCurrentMethod().Name, 0, AMTLogger.LogInfo.Error);
            }
        }