From d8b6e272443d0513025ea55ef0e0cabf73798a9a Mon Sep 17 00:00:00 2001 From: John Date: Thu, 19 Feb 2015 19:59:21 +0000 Subject: [PATCH] added a tool tip to the options dropdown list on the Administrative Tools dialog box. --- PROMS/VEPROMS User Interface/frmBatchRefresh.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PROMS/VEPROMS User Interface/frmBatchRefresh.cs b/PROMS/VEPROMS User Interface/frmBatchRefresh.cs index 8169b858..ea0fb192 100644 --- a/PROMS/VEPROMS User Interface/frmBatchRefresh.cs +++ b/PROMS/VEPROMS User Interface/frmBatchRefresh.cs @@ -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);