C2022-003-Change-Textboxes-to-RTF-3 #701

Merged
mschill merged 29 commits from C2022-003-Change-Textboxes-to-RTF-3 into Development 2026-02-20 10:31:51 -05:00
Showing only changes of commit 12f175740f - Show all commits
+5
View File
@@ -627,10 +627,15 @@ namespace VEPROMS
//
this.btnFilter.Name = "btnFilter";
this.btnFilter.Text = "Tree View Search:";
Outdated
Review

this is missing this.btnFilter.Click += SubmitFilter;

this is missing this.btnFilter.Click += SubmitFilter;
Outdated
Review

Agreed - this appears to be intendedly that some code was removed.

Agreed - this appears to be intendedly that some code was removed.
Outdated
Review

I added the missing line last night.

I added the missing line last night.
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;
Outdated
Review

Are we removing functionality? ----- noticed we removed the this.txtFilter.TextBox.KeyPress?

Are we removing functionality? ----- noticed we removed the this.txtFilter.TextBox.KeyPress?
Outdated
Review

looks like there are other changes also?

like:
this.btnFilter.Click
&
this.txtFilter.TextBox.Font

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);
Outdated
Review

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.
Outdated
Review

Agreed - this appears to be intendedly that some code was removed.

Agreed - this appears to be intendedly that some code was removed.
Outdated
Review

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));
3