C2022-003-Change-Textboxes-to-RTF-3 #701
@@ -627,10 +627,15 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnFilter.Name = "btnFilter";
|
||||
this.btnFilter.Text = "Tree View Search:";
|
||||
|
|
||||
this.btnFilter.Click += SubmitFilter;
|
||||
//
|
||||
// txtFilter
|
||||
//
|
||||
this.txtFilter.TextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
|
||||
this.txtFilter.Name = "txtFilter";
|
||||
this.txtFilter.TextBoxWidth = 120;
|
||||
this.txtFilter.TextBox.TabIndex = 0;
|
||||
|
mschill
commented
Are we removing functionality? ----- noticed we removed the this.txtFilter.TextBox.KeyPress? Are we removing functionality? ----- noticed we removed the this.txtFilter.TextBox.KeyPress?
mschill
commented
looks like there are other changes also? like: now missing? looks like there are other changes also?
like:
this.btnFilter.Click
&
this.txtFilter.TextBox.Font
now missing?
|
||||
this.txtFilter.TextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.FilterEnterKey);
|
||||
|
jjenko
commented
in general, this txtFilter code looks different appears to be missing code from the orginal. in general, this txtFilter code looks different appears to be missing code from the orginal.
mschill
commented
Agreed - this appears to be intendedly that some code was removed. Agreed - this appears to be intendedly that some code was removed.
plarsen
commented
I added the missing lines last night. I added the missing lines last night.
|
||||
this.superTooltip1.SetSuperTooltip(this.txtFilter, new DevComponents.DotNetBar.SuperTooltipInfo("Filter", "", "This will filter the Procedure Tree in PROMS to Procedures containing entered wor" +
|
||||
"ds in the Procedure Number or Title. Press enter or the Tree View Search button " +
|
||||
"to submit.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
|
||||
Reference in New Issue
Block a user
this is missing this.btnFilter.Click += SubmitFilter;
Agreed - this appears to be intendedly that some code was removed.
I added the missing line last night.