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

Open
plarsen wants to merge 28 commits from C2022-003-Change-Textboxes-to-RTF-3 into Development
Showing only changes of commit 12f175740f - Show all commits

View File

@@ -627,10 +627,15 @@ namespace VEPROMS
//
this.btnFilter.Name = "btnFilter";
this.btnFilter.Text = "Tree View Search:";

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

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

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

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

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;

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

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

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

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.

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

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

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