Show Progress bar when Printing all procedures

Added Cancel button for printing all procedures
Added Timer for automatic processes
This commit is contained in:
Rich
2012-09-17 19:14:29 +00:00
parent ffcffcc5ba
commit 41c9f223b0
7 changed files with 113 additions and 40 deletions

View File

@@ -99,6 +99,7 @@ namespace VEPROMS
this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.tmrTreeView = new System.Windows.Forms.Timer(this.components);
this.tmrAutomatic = new System.Windows.Forms.Timer(this.components);
this.toolsPanel = new DevComponents.DotNetBar.ExpandablePanel();
this.toolsTabs = new DevComponents.DotNetBar.TabControl();
this.annotationSearch = new DevComponents.DotNetBar.TabControlPanel();
@@ -1055,6 +1056,11 @@ namespace VEPROMS
this.tmrTreeView.Interval = 10;
this.tmrTreeView.Tick += new System.EventHandler(this.tmrTreeView_Tick);
//
// tmrAutomatic
//
this.tmrAutomatic.Interval = 100;
this.tmrAutomatic.Tick += new System.EventHandler(this.tmrAutomatic_Tick);
//
// toolsPanel
//
this.toolsPanel.CanvasColor = System.Drawing.SystemColors.Control;
@@ -1465,6 +1471,7 @@ namespace VEPROMS
private DevComponents.DotNetBar.ButtonX btnAnnoDetailsPushPin;
private DevComponents.DotNetBar.ButtonItem buttonItem1;
private System.Windows.Forms.Timer tmrTreeView;
private System.Windows.Forms.Timer tmrAutomatic;
private Volian.Controls.Library.AnnotationDetails ctrlAnnotationDetails;
private DevComponents.DotNetBar.ButtonItem btnHelp;
private DevComponents.DotNetBar.ButtonItem btnHelpManual;