Changed caption to "<User Name> (<First Name> <Last Name>) Information"

Changed caption to "Manage User"
This commit is contained in:
Rich 2015-11-25 15:27:48 +00:00
parent df37f61cb5
commit 1cb12b6fdc
2 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,7 @@ namespace VEPROMS
this.Controls.Add(this.splitContainer1);
this.Name = "frmManageUser";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "frmManageUser";
this.Text = "Manage User";// Fix Code Change Request C2015-063
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);

View File

@ -20,6 +20,7 @@ namespace VEPROMS
_MyUser = value;
SimpleUser su = new SimpleUser(_MyUser);
pgUser.SelectedObject = su;
this.Text = string.Format("{0} ({1} {2}) Information",su.UserID,su.FirstName,su.LastName);
}
}
private string _Mode;