Added code to support converting to text transitions to external destinations with internal style transition

Added wait cursor for log running processes so application shows it is busy
Added stubs for adding Update RO Values to batch process.  Not functional yet
This commit is contained in:
Rich
2015-02-11 20:30:08 +00:00
parent 313cb28327
commit 481589c028
3 changed files with 305 additions and 142 deletions

View File

@@ -34,6 +34,7 @@ namespace VEPROMS
this.label1 = new System.Windows.Forms.Label();
this.rbRefObj = new System.Windows.Forms.RadioButton();
this.rbTransition = new System.Windows.Forms.RadioButton();
this.rbUpdate = new System.Windows.Forms.RadioButton();
this.myTV = new System.Windows.Forms.TreeView();
this.label2 = new System.Windows.Forms.Label();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
@@ -103,13 +104,14 @@ namespace VEPROMS
this.splitContainer2.Panel1.Controls.Add(this.label1);
this.splitContainer2.Panel1.Controls.Add(this.rbRefObj);
this.splitContainer2.Panel1.Controls.Add(this.rbTransition);
this.splitContainer2.Panel1.Controls.Add(this.rbUpdate);
//
// splitContainer2.Panel2
//
this.splitContainer2.Panel2.Controls.Add(this.myTV);
this.splitContainer2.Panel2.Controls.Add(this.label2);
this.splitContainer2.Size = new System.Drawing.Size(300, 472);
this.splitContainer2.SplitterDistance = 107;
this.splitContainer2.SplitterDistance = 120;
this.splitContainer2.TabIndex = 0;
//
// rbBoth
@@ -119,7 +121,7 @@ namespace VEPROMS
this.rbBoth.Name = "rbBoth";
this.rbBoth.Size = new System.Drawing.Size(195, 17);
this.rbBoth.TabIndex = 2;
this.rbBoth.Text = "Transitions and Referenced Objects";
this.rbBoth.Text = "Refresh Transitions and Referenced Objects";
this.rbBoth.UseVisualStyleBackColor = true;
this.rbBoth.Click += new System.EventHandler(this.Options_Changed);
//
@@ -142,23 +144,32 @@ namespace VEPROMS
this.rbRefObj.Name = "rbRefObj";
this.rbRefObj.Size = new System.Drawing.Size(144, 17);
this.rbRefObj.TabIndex = 1;
this.rbRefObj.Text = "Referenced Objects Only";
this.rbRefObj.Text = "Refresh Referenced Objects Only";
this.rbRefObj.UseVisualStyleBackColor = true;
this.rbRefObj.Click += new System.EventHandler(this.Options_Changed);
//
// rbTransition
//
this.rbTransition.AutoSize = true;
this.rbTransition.Checked = true;
this.rbTransition.Location = new System.Drawing.Point(12, 26);
this.rbTransition.Name = "rbTransition";
this.rbTransition.Size = new System.Drawing.Size(100, 17);
this.rbTransition.TabIndex = 0;
this.rbTransition.TabStop = true;
this.rbTransition.Text = "Transitions Only";
this.rbTransition.Text = "Refresh Transitions Only";
this.rbTransition.UseVisualStyleBackColor = true;
this.rbTransition.Click += new System.EventHandler(this.Options_Changed);
//
// rbUpdate
//
this.rbUpdate.AutoSize = true;
this.rbUpdate.Location = new System.Drawing.Point(12, 94);
this.rbUpdate.Name = "rbUpdate";
this.rbUpdate.Size = new System.Drawing.Size(100, 17);
this.rbUpdate.TabIndex = 0;
this.rbUpdate.Text = "Update RO Values";
this.rbUpdate.UseVisualStyleBackColor = true;
this.rbUpdate.Click += new System.EventHandler(this.Options_Changed);
//
// myTV
//
this.myTV.CheckBoxes = true;
@@ -307,7 +318,7 @@ namespace VEPROMS
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(286, 28);
this.btnRefresh.TabIndex = 1;
this.btnRefresh.Text = "Refresh selected option";
this.btnRefresh.Text = "NO OPTION SELECTED";
this.btnRefresh.UseVisualStyleBackColor = true;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
//
@@ -448,6 +459,7 @@ namespace VEPROMS
private System.Windows.Forms.RadioButton rbBoth;
private System.Windows.Forms.RadioButton rbRefObj;
private System.Windows.Forms.RadioButton rbTransition;
private System.Windows.Forms.RadioButton rbUpdate;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnClear;