private void ProcessStaticReport(IGraphicalReport report, bool TimeForward)
 {
     if (TimeForward)
     {
         ProcessStaticReport(report);
     }
     else
     {
         if (report.ReportAction != MNS_Reporting.Action.Stop)
             staticQueue.Remove(report);
         if (report.ReportAction != MNS_Reporting.Action.Start)
             staticQueue.Add(report.PreviousStatic);
     }
 }
 /*    // \\    */
 /*   //   \\   */
 /*  //     \\  */
 private void ProcessStaticReport(IGraphicalReport report)
 {
     // Forward Direction...
     if (report.ReportAction != MNS_Reporting.Action.Start)
         staticQueue.Remove(report.PreviousStatic);
     if (report.ReportAction != MNS_Reporting.Action.Stop)
         staticQueue.Add(report);
 }