This commit is contained in:
2010-08-12 16:05:52 +00:00
parent f91459b9f0
commit 0849b002b4
18 changed files with 231 additions and 212 deletions

View File

@@ -33,6 +33,8 @@ namespace VEPROMS
this.lblStatus = new DevComponents.DotNetBar.LabelX();
this.pb = new DevComponents.DotNetBar.Controls.ProgressBarX();
this.tmrRun = new System.Windows.Forms.Timer(this.components);
this.btnOpenFolder = new DevComponents.DotNetBar.ButtonX();
this.btnOpenPDF = new DevComponents.DotNetBar.ButtonX();
this.SuspendLayout();
//
// lblStatus
@@ -65,11 +67,39 @@ namespace VEPROMS
//
this.tmrRun.Tick += new System.EventHandler(this.tmrRun_Tick);
//
// btnOpenFolder
//
this.btnOpenFolder.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnOpenFolder.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnOpenFolder.Location = new System.Drawing.Point(658, 28);
this.btnOpenFolder.Name = "btnOpenFolder";
this.btnOpenFolder.Size = new System.Drawing.Size(75, 23);
this.btnOpenFolder.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.btnOpenFolder.TabIndex = 2;
this.btnOpenFolder.Text = "Open Folder";
this.btnOpenFolder.Visible = false;
this.btnOpenFolder.Click += new System.EventHandler(this.btnOpenFolder_Click);
//
// btnOpenPDF
//
this.btnOpenPDF.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnOpenPDF.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnOpenPDF.Location = new System.Drawing.Point(568, 28);
this.btnOpenPDF.Name = "btnOpenPDF";
this.btnOpenPDF.Size = new System.Drawing.Size(75, 23);
this.btnOpenPDF.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
this.btnOpenPDF.TabIndex = 3;
this.btnOpenPDF.Text = "Open PDF";
this.btnOpenPDF.Visible = false;
this.btnOpenPDF.Click += new System.EventHandler(this.btnOpenPDF_Click);
//
// frmPDFStatusForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(745, 104);
this.Controls.Add(this.btnOpenPDF);
this.Controls.Add(this.btnOpenFolder);
this.Controls.Add(this.pb);
this.Controls.Add(this.lblStatus);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
@@ -87,5 +117,7 @@ namespace VEPROMS
private DevComponents.DotNetBar.LabelX lblStatus;
private DevComponents.DotNetBar.Controls.ProgressBarX pb;
private System.Windows.Forms.Timer tmrRun;
private DevComponents.DotNetBar.ButtonX btnOpenFolder;
private DevComponents.DotNetBar.ButtonX btnOpenPDF;
}
}