ReportInvalidMapIDs() public method

public ReportInvalidMapIDs ( string reportfile ) : void
reportfile string
return void
Example #1
0
 private void OnClickReportInvalidMapIDs(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     _currMap.ReportInvalidMapIDs(Options.OutputPath);
     Cursor.Current = Cursors.Default;
     MessageBox.Show($"Report saved to {Options.OutputPath}", "Saved", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
 }
Example #2
0
 private void OnClickReportInvalidMapIDs(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     currmap.ReportInvalidMapIDs(FiddlerControls.Options.OutputPath);
     Cursor.Current = Cursors.Default;
     MessageBox.Show(String.Format("Report saved to {0}", FiddlerControls.Options.OutputPath), "Saved", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
 }