Added code to support textbox in status bar at bottom of PROMS which allows user to locate an item by the itemid or contentid in debug mode

This commit is contained in:
Rich
2014-10-24 01:30:19 +00:00
parent 73ca054fa2
commit f1c6f819b9
2 changed files with 42 additions and 4 deletions

View File

@@ -72,6 +72,7 @@ namespace VEPROMS
this.lblItemID = new DevComponents.DotNetBar.LabelItem();
this.lblResolution = new DevComponents.DotNetBar.LabelItem();
this.lblUser = new DevComponents.DotNetBar.LabelItem();
this.txtSearch = new DevComponents.DotNetBar.TextBoxItem();
this.btnEditItem = new DevComponents.DotNetBar.ButtonItem();
this.btnFixMSWord = new DevComponents.DotNetBar.ButtonItem();
this.epAnnotations = new DevComponents.DotNetBar.ExpandablePanel();
@@ -496,6 +497,7 @@ namespace VEPROMS
this.lblResolution,
this.btnEditItem,
this.lblUser,
this.txtSearch,
this.btnFixMSWord});
this.bottomBar.Location = new System.Drawing.Point(5, 569);
this.bottomBar.Name = "bottomBar";
@@ -594,6 +596,10 @@ namespace VEPROMS
this.lblUser.ForeColor = System.Drawing.SystemColors.MenuText;
this.lblUser.Name = "lblUser";
this.lblUser.Text = "User";
//
// txtSearch
//
this.txtSearch.Name = "txtSearch";
//
// btnEditItem
//
@@ -1612,6 +1618,7 @@ namespace VEPROMS
private System.Windows.Forms.ComboBox cmbFont;
private DevComponents.DotNetBar.LabelItem lblResolution;
private DevComponents.DotNetBar.LabelItem lblUser;
private DevComponents.DotNetBar.TextBoxItem txtSearch;
private DevComponents.DotNetBar.ButtonItem btnEditItem;
private DevComponents.DotNetBar.TabControlPanel tabControlPanel1;
private DevComponents.DotNetBar.TabItem infotabHistory;