added a tool tip to the options dropdown list on the Administrative Tools dialog box.

This commit is contained in:
2015-02-19 19:59:21 +00:00
parent 7ff6a6a80e
commit d8b6e27244

View File

@@ -28,6 +28,9 @@ namespace VEPROMS
private AdminTool selectedAdminTool;
private void SetUpAdminTools()
{
DevComponents.DotNetBar.BalloonTip bt = new BalloonTip();
bt.SetBalloonCaption(cbxAdminTools, "Select Administrative Tool");
bt.SetBalloonText(cbxAdminTools, "Use this combo box to select an Administrative Tool to execute");
adminToolsList = new AdminTools();
adminToolsList.Add("Update RO Values", "Update RO Values Guidance", "This allows the user to update referenced objects values for multiple working drafts in a batch mode.", "It is recommended that this be done during off hours.", "WARNING:", true, false, UpdateROValues);
adminToolsList.Add("Refresh Referenced Objects", "Refresh Referenced Objects Guidance", "Occasionally, referenced objects do not get updated. One cause of this is a failure to allow the RO update to complete.\r\n\r\nThis function will refresh referenced objects (based on the current ROFst) in all procedures selected below whether they were selected individually or as a group via a procedure set.", "If more than one procedure is selected, it is recommened that this be performed during off hours.", "WARNING:", false, false, RefreshReferencedObjects);