예제 #1
0
파일: MainUI.cs 프로젝트: 5dollartools/NAM
 private void tsOSInstallReport_Click(object sender, EventArgs e)
 {
     FrmReportMachine frmReportMachine = new FrmReportMachine(ReportsType.OSInstall);
     if (frmReportMachine.ShowDialog() == DialogResult.OK)
     {
         string reportName = "OS\\OS Install";
         SaveReport(reportName, frmReportMachine.ResultDataSet);
     }
 }
예제 #2
0
파일: MainUI.cs 프로젝트: 5dollartools/NAM
 private void tsDiskUtilizationReport_Click(object sender, EventArgs e)
 {
     FrmReportMachine frmReportMachine = new FrmReportMachine(ReportsType.DiskUtilization);
     if (frmReportMachine.ShowDialog() == DialogResult.OK)
     {
         string reportName = "Disk\\Disk Utilization";
         SaveReport(reportName, frmReportMachine.ResultDataSet);
     }
 }
예제 #3
0
파일: MainUI.cs 프로젝트: 5dollartools/NAM
 private void tsLowDiskReport_Click(object sender, EventArgs e)
 {
     FrmReportMachine frmReportMachine = new FrmReportMachine(ReportsType.LowDiskPercent);
     if (frmReportMachine.ShowDialog() == DialogResult.OK)
     {
         string reportName = "Disk\\LowDisk";
         SaveReport(reportName, frmReportMachine.ResultDataSet);
     }
 }
예제 #4
0
파일: MainUI.cs 프로젝트: 5dollartools/NAM
 private void tsAllHardware_Click(object sender, EventArgs e)
 {
     FrmReportMachine frmReportMachine = new FrmReportMachine(ReportsType.HardwareComponents);
     if (frmReportMachine.ShowDialog() == DialogResult.OK)
     {
         string reportName = "Inventory\\Hardware";
         SaveReport(reportName, frmReportMachine.ResultDataSet);
     }
 }