private void newToolStripMenuItem1_Click(object sender, EventArgs e) { ReportWindow n = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.Services, EnumHelper.Mode.Collection); n.MdiParent = this; n.Show(); }
private void GetLogicalDiskReport() { ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.LogicalDisk); serviceReportWindow.MdiParent = this; serviceReportWindow.Show(); }
private void GetQuickFixReport() { ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.QuickFix); serviceReportWindow.MdiParent = this; serviceReportWindow.Show(); }
private void GetApplicationReport() { ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.Application); serviceReportWindow.MdiParent = this; serviceReportWindow.Show(); }
private void GetOSReport() { ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.OperatingSystem); serviceReportWindow.MdiParent = this; serviceReportWindow.Show(); }
private void GetBootReport() { ReportWindow serviceReportWindow = new ReportWindow(ReportingInterfaces.EnumHelper.WMIReportCategory.BootConfiguration); serviceReportWindow.MdiParent = this; serviceReportWindow.Show(); }
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); } }