Modified code to support structure changes to treeview nodes

This commit is contained in:
Jim
2015-05-16 17:02:26 +00:00
parent f66cb15dd3
commit f005316849
9 changed files with 309 additions and 79 deletions

View File

@@ -72,7 +72,9 @@ namespace VEPROMS
this.lblItemID = new DevComponents.DotNetBar.LabelItem();
this.lblResolution = new DevComponents.DotNetBar.LabelItem();
this.lblUser = new DevComponents.DotNetBar.LabelItem();
this.lblLastChange = new DevComponents.DotNetBar.LabelItem();
//this.txtSearch = new DevComponents.DotNetBar.TextBoxItem(); // RHM20150506 Multiline ItemID TextBox
this.btnStepRTF = new DevComponents.DotNetBar.ButtonItem();
this.txtSearch = new System.Windows.Forms.TextBox();
this.btnPrevious = new System.Windows.Forms.Button();
this.btnPrint1 = new System.Windows.Forms.Button();
@@ -507,6 +509,8 @@ namespace VEPROMS
this.lblResolution,
this.btnEditItem,
this.lblUser,
this.lblLastChange,
this.btnStepRTF,
//this.txtSearch, // RHM20150506 Multiline ItemID TextBox
this.btnFixMSWord});
this.bottomBar.Location = new System.Drawing.Point(5, 569);
@@ -607,6 +611,19 @@ namespace VEPROMS
this.lblUser.Name = "lblUser";
this.lblUser.Text = "User";
//
// btnStepRTF
//
this.btnStepRTF.Name = "btnStepRTF";
this.btnStepRTF.Text = "Step RTF";
//this.btnStepRTF.Click += new System.EventHandler(btnStepRTF_Click);
//
// lblLastChange
//
this.lblLastChange.BackColor = System.Drawing.Color.Transparent;
this.lblLastChange.ForeColor = System.Drawing.SystemColors.MenuText;
this.lblLastChange.Name = "lblLastChange";
this.lblLastChange.Text = "LastChange";
//
// txtSearch
//
this.txtSearch.Name = "txtSearch";
@@ -1664,8 +1681,10 @@ namespace VEPROMS
private System.Windows.Forms.ComboBox cmbFont;
private DevComponents.DotNetBar.LabelItem lblResolution;
private DevComponents.DotNetBar.LabelItem lblUser;
private DevComponents.DotNetBar.LabelItem lblLastChange;
//private DevComponents.DotNetBar.TextBoxItem txtSearch; // RHM20150506 Multiline ItemID TextBox
private System.Windows.Forms.TextBox txtSearch;
private DevComponents.DotNetBar.ButtonItem btnStepRTF;
private System.Windows.Forms.Button btnPrevious;
private System.Windows.Forms.Button btnPrint1;
private System.Windows.Forms.CheckBox cbScrunch;