Merge pull request 'C2026-002 Admin Tool - Data Check - Enhancements to new admin Tool for ROs not used.' (#686) from C2026-002 into Development
good for testing phase
This commit was merged in pull request #686.
This commit is contained in:
@@ -24436,6 +24436,15 @@ IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[vesp_GetROsNotUs
|
|||||||
DROP PROCEDURE [vesp_GetROsNotUsed];
|
DROP PROCEDURE [vesp_GetROsNotUsed];
|
||||||
|
|
||||||
GO
|
GO
|
||||||
|
-- Need to drop vesp_GetROsNotUsed SP first so script can drop and recreate the TableValID table type
|
||||||
|
IF EXISTS( SELECT * FROM INFORMATION_SCHEMA.DOMAINS WHERE Domain_Name = 'TableValID' )
|
||||||
|
DROP TYPE [dbo].[TableValID]
|
||||||
|
|
||||||
|
CREATE TYPE [dbo].[TableValID] AS TABLE(
|
||||||
|
[ID] [bigint] NOT NULL
|
||||||
|
|
||||||
|
)
|
||||||
|
GO
|
||||||
|
|
||||||
/****** Object: StoredProcedure [dbo].[vesp_GetROsNotUsed] ******/
|
/****** Object: StoredProcedure [dbo].[vesp_GetROsNotUsed] ******/
|
||||||
|
|
||||||
@@ -24445,6 +24454,9 @@ GO
|
|||||||
-- Description: Returns ROs that are not Used in PROMS
|
-- Description: Returns ROs that are not Used in PROMS
|
||||||
-- =============================================
|
-- =============================================
|
||||||
CREATE PROCEDURE [dbo].[vesp_GetROsNotUsed]
|
CREATE PROCEDURE [dbo].[vesp_GetROsNotUsed]
|
||||||
|
(
|
||||||
|
@dbIDs AS dbo.TableValID READONLY
|
||||||
|
)
|
||||||
AS
|
AS
|
||||||
BEGIN
|
BEGIN
|
||||||
|
|
||||||
@@ -24464,6 +24476,7 @@ BEGIN
|
|||||||
FROM RofstChild
|
FROM RofstChild
|
||||||
INNER JOIN RofstDatabase fstdb on fstdb.RofstID = RofstChild.RofstID and fstdb.dbiID = RofstChild.dbiID
|
INNER JOIN RofstDatabase fstdb on fstdb.RofstID = RofstChild.RofstID and fstdb.dbiID = RofstChild.dbiID
|
||||||
INNER JOIN @FSTs fst on fst.RofstID = fstdb.RofstID AND RofstChild.RofstID = fst.RofstID
|
INNER JOIN @FSTs fst on fst.RofstID = fstdb.RofstID AND RofstChild.RofstID = fst.RofstID
|
||||||
|
INNER JOIN @dbIDs dbIDs on dbIDs.ID = RofstChild.dbiID --downbase to only dbs included
|
||||||
LEFT OUTER JOIN RofstChild subchild ON subChild.ParentID = RofstChild.ID --make sure it is not a parent of something else
|
LEFT OUTER JOIN RofstChild subchild ON subChild.ParentID = RofstChild.ID --make sure it is not a parent of something else
|
||||||
LEFT OUTER JOIN DRoUsages ON [DRoUsages].[ROID] like RofstChild.[ROID] + '%' AND fst.RODbID = DROUsages.RODbID --not used in documents
|
LEFT OUTER JOIN DRoUsages ON [DRoUsages].[ROID] like RofstChild.[ROID] + '%' AND fst.RODbID = DROUsages.RODbID --not used in documents
|
||||||
LEFT OUTER JOIN RoUsages ON [RoUsages].[ROID] like RofstChild.[ROID] + '%' AND fst.RODbID = ROUsages.RODbID --not used in regular ROs
|
LEFT OUTER JOIN RoUsages ON [RoUsages].[ROID] like RofstChild.[ROID] + '%' AND fst.RODbID = ROUsages.RODbID --not used in regular ROs
|
||||||
@@ -24488,6 +24501,7 @@ BEGIN
|
|||||||
SELECT DISTINCT NULL, NULL, RofstDatabase.ID, RofstDatabase.ParentID, RofstDatabase.dbiID, RofstDatabase.dbiTitle
|
SELECT DISTINCT NULL, NULL, RofstDatabase.ID, RofstDatabase.ParentID, RofstDatabase.dbiID, RofstDatabase.dbiTitle
|
||||||
FROM RofstDatabase
|
FROM RofstDatabase
|
||||||
INNER JOIN @FSTs fst on fst.RofstID = RofstDatabase.RofstID
|
INNER JOIN @FSTs fst on fst.RofstID = RofstDatabase.RofstID
|
||||||
|
INNER JOIN @dbIDs dbIDs on RofstDatabase.dbiID = dbIDs.ID --downbase to only dbs included
|
||||||
|
|
||||||
select *
|
select *
|
||||||
FROM #notused notused
|
FROM #notused notused
|
||||||
@@ -24548,7 +24562,7 @@ BEGIN TRY -- Try Block
|
|||||||
DECLARE @RevDate varchar(255)
|
DECLARE @RevDate varchar(255)
|
||||||
DECLARE @RevDescription varchar(255)
|
DECLARE @RevDescription varchar(255)
|
||||||
|
|
||||||
set @RevDate = '1/12/2026 2:00 PM'
|
set @RevDate = '1/16/2026 7:00 AM'
|
||||||
set @RevDescription = 'Added Method to get ROs that are not used in PROMS'
|
set @RevDescription = 'Added Method to get ROs that are not used in PROMS'
|
||||||
|
|
||||||
Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription
|
Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription
|
||||||
|
|||||||
621
PROMS/VEPROMS User Interface/frmBatchRefresh.Designer.cs
generated
621
PROMS/VEPROMS User Interface/frmBatchRefresh.Designer.cs
generated
@@ -30,6 +30,7 @@
|
|||||||
{
|
{
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBatchRefresh));
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBatchRefresh));
|
||||||
this.myTV = new System.Windows.Forms.TreeView();
|
this.myTV = new System.Windows.Forms.TreeView();
|
||||||
|
this.myTV_RO_DBs = new System.Windows.Forms.TreeView();
|
||||||
this.splitContainer3 = new System.Windows.Forms.SplitContainer();
|
this.splitContainer3 = new System.Windows.Forms.SplitContainer();
|
||||||
this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
|
this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
|
||||||
this.txtResults = new System.Windows.Forms.TextBox();
|
this.txtResults = new System.Windows.Forms.TextBox();
|
||||||
@@ -62,6 +63,24 @@
|
|||||||
this.btnIndexMaint = new DevComponents.DotNetBar.ButtonX();
|
this.btnIndexMaint = new DevComponents.DotNetBar.ButtonX();
|
||||||
this.itemPanel3 = new DevComponents.DotNetBar.PanelEx();
|
this.itemPanel3 = new DevComponents.DotNetBar.PanelEx();
|
||||||
this.btnROsNotUsed = new DevComponents.DotNetBar.ButtonX();
|
this.btnROsNotUsed = new DevComponents.DotNetBar.ButtonX();
|
||||||
|
this.sideNavPanel3 = new DevComponents.DotNetBar.Controls.SideNavPanel();
|
||||||
|
this.swCheckROLinks = new DevComponents.DotNetBar.Controls.SwitchButton();
|
||||||
|
this.labelX12 = new DevComponents.DotNetBar.LabelX();
|
||||||
|
this.warningBox5 = new DevComponents.DotNetBar.Controls.WarningBox();
|
||||||
|
this.line3 = new DevComponents.DotNetBar.Controls.Line();
|
||||||
|
this.swUpdateROVals = new DevComponents.DotNetBar.Controls.SwitchButton();
|
||||||
|
this.swRefreshTrans = new DevComponents.DotNetBar.Controls.SwitchButton();
|
||||||
|
this.labelX11 = new DevComponents.DotNetBar.LabelX();
|
||||||
|
this.labelX6 = new DevComponents.DotNetBar.LabelX();
|
||||||
|
this.warningBox1 = new DevComponents.DotNetBar.Controls.WarningBox();
|
||||||
|
this.btnFixLinks = new DevComponents.DotNetBar.ButtonX();
|
||||||
|
this.sideNavPanel4 = new DevComponents.DotNetBar.Controls.SideNavPanel();
|
||||||
|
this.swDeleteFolder = new DevComponents.DotNetBar.Controls.SwitchButton();
|
||||||
|
this.labelX13 = new DevComponents.DotNetBar.LabelX();
|
||||||
|
this.swDeleteAnnotations = new DevComponents.DotNetBar.Controls.SwitchButton();
|
||||||
|
this.labelX14 = new DevComponents.DotNetBar.LabelX();
|
||||||
|
this.myTVdel = new System.Windows.Forms.TreeView();
|
||||||
|
this.btnDeleteItems = new DevComponents.DotNetBar.ButtonX();
|
||||||
this.sideNavPanel2 = new DevComponents.DotNetBar.Controls.SideNavPanel();
|
this.sideNavPanel2 = new DevComponents.DotNetBar.Controls.SideNavPanel();
|
||||||
this.swRefreshTblsForSrch = new DevComponents.DotNetBar.Controls.SwitchButton();
|
this.swRefreshTblsForSrch = new DevComponents.DotNetBar.Controls.SwitchButton();
|
||||||
this.lblRefreshTblForSrch = new DevComponents.DotNetBar.LabelX();
|
this.lblRefreshTblForSrch = new DevComponents.DotNetBar.LabelX();
|
||||||
@@ -78,24 +97,6 @@
|
|||||||
this.labelX8 = new DevComponents.DotNetBar.LabelX();
|
this.labelX8 = new DevComponents.DotNetBar.LabelX();
|
||||||
this.line2 = new DevComponents.DotNetBar.Controls.Line();
|
this.line2 = new DevComponents.DotNetBar.Controls.Line();
|
||||||
this.btnRunRepair = new DevComponents.DotNetBar.ButtonX();
|
this.btnRunRepair = new DevComponents.DotNetBar.ButtonX();
|
||||||
this.sideNavPanel4 = new DevComponents.DotNetBar.Controls.SideNavPanel();
|
|
||||||
this.swDeleteFolder = new DevComponents.DotNetBar.Controls.SwitchButton();
|
|
||||||
this.labelX13 = new DevComponents.DotNetBar.LabelX();
|
|
||||||
this.swDeleteAnnotations = new DevComponents.DotNetBar.Controls.SwitchButton();
|
|
||||||
this.labelX14 = new DevComponents.DotNetBar.LabelX();
|
|
||||||
this.myTVdel = new System.Windows.Forms.TreeView();
|
|
||||||
this.btnDeleteItems = new DevComponents.DotNetBar.ButtonX();
|
|
||||||
this.sideNavPanel3 = new DevComponents.DotNetBar.Controls.SideNavPanel();
|
|
||||||
this.swCheckROLinks = new DevComponents.DotNetBar.Controls.SwitchButton();
|
|
||||||
this.labelX12 = new DevComponents.DotNetBar.LabelX();
|
|
||||||
this.warningBox5 = new DevComponents.DotNetBar.Controls.WarningBox();
|
|
||||||
this.line3 = new DevComponents.DotNetBar.Controls.Line();
|
|
||||||
this.swUpdateROVals = new DevComponents.DotNetBar.Controls.SwitchButton();
|
|
||||||
this.swRefreshTrans = new DevComponents.DotNetBar.Controls.SwitchButton();
|
|
||||||
this.labelX11 = new DevComponents.DotNetBar.LabelX();
|
|
||||||
this.labelX6 = new DevComponents.DotNetBar.LabelX();
|
|
||||||
this.warningBox1 = new DevComponents.DotNetBar.Controls.WarningBox();
|
|
||||||
this.btnFixLinks = new DevComponents.DotNetBar.ButtonX();
|
|
||||||
this.sideNavItem1 = new DevComponents.DotNetBar.Controls.SideNavItem();
|
this.sideNavItem1 = new DevComponents.DotNetBar.Controls.SideNavItem();
|
||||||
this.separator1 = new DevComponents.DotNetBar.Separator();
|
this.separator1 = new DevComponents.DotNetBar.Separator();
|
||||||
this.sideNavItmRepair = new DevComponents.DotNetBar.Controls.SideNavItem();
|
this.sideNavItmRepair = new DevComponents.DotNetBar.Controls.SideNavItem();
|
||||||
@@ -127,9 +128,9 @@
|
|||||||
this.itemPanel1.SuspendLayout();
|
this.itemPanel1.SuspendLayout();
|
||||||
this.itemPanel2.SuspendLayout();
|
this.itemPanel2.SuspendLayout();
|
||||||
this.itemPanel3.SuspendLayout();
|
this.itemPanel3.SuspendLayout();
|
||||||
this.sideNavPanel2.SuspendLayout();
|
|
||||||
this.sideNavPanel4.SuspendLayout();
|
|
||||||
this.sideNavPanel3.SuspendLayout();
|
this.sideNavPanel3.SuspendLayout();
|
||||||
|
this.sideNavPanel4.SuspendLayout();
|
||||||
|
this.sideNavPanel2.SuspendLayout();
|
||||||
this.panelEx4.SuspendLayout();
|
this.panelEx4.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
@@ -143,6 +144,16 @@
|
|||||||
this.myTV.TabIndex = 4;
|
this.myTV.TabIndex = 4;
|
||||||
this.myTV.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.myTV_AfterCheck);
|
this.myTV.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.myTV_AfterCheck);
|
||||||
//
|
//
|
||||||
|
// myTV_RO_DBs
|
||||||
|
//
|
||||||
|
this.myTV_RO_DBs.CheckBoxes = true;
|
||||||
|
this.myTV_RO_DBs.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
|
this.myTV_RO_DBs.Location = new System.Drawing.Point(0, 50);
|
||||||
|
this.myTV_RO_DBs.Name = "myTV_RO_DBs";
|
||||||
|
this.myTV_RO_DBs.Size = new System.Drawing.Size(267, 250);
|
||||||
|
this.myTV_RO_DBs.TabIndex = 4;
|
||||||
|
this.myTV_RO_DBs.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.TreeView_AfterCheck);
|
||||||
|
//
|
||||||
// splitContainer3
|
// splitContainer3
|
||||||
//
|
//
|
||||||
this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
@@ -351,7 +362,7 @@
|
|||||||
this.pnlLater.Controls.Add(this.dtpDate);
|
this.pnlLater.Controls.Add(this.dtpDate);
|
||||||
this.pnlLater.Dock = System.Windows.Forms.DockStyle.Top;
|
this.pnlLater.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
this.pnlLater.Enabled = false;
|
this.pnlLater.Enabled = false;
|
||||||
this.pnlLater.Location = new System.Drawing.Point(6, 25);
|
this.pnlLater.Location = new System.Drawing.Point(6, 23);
|
||||||
this.pnlLater.Name = "pnlLater";
|
this.pnlLater.Name = "pnlLater";
|
||||||
this.pnlLater.Padding = new System.Windows.Forms.Padding(6);
|
this.pnlLater.Padding = new System.Windows.Forms.Padding(6);
|
||||||
this.pnlLater.Size = new System.Drawing.Size(279, 37);
|
this.pnlLater.Size = new System.Drawing.Size(279, 37);
|
||||||
@@ -362,7 +373,7 @@
|
|||||||
this.label5.AutoSize = true;
|
this.label5.AutoSize = true;
|
||||||
this.label5.Location = new System.Drawing.Point(105, 15);
|
this.label5.Location = new System.Drawing.Point(105, 15);
|
||||||
this.label5.Name = "label5";
|
this.label5.Name = "label5";
|
||||||
this.label5.Size = new System.Drawing.Size(19, 15);
|
this.label5.Size = new System.Drawing.Size(18, 13);
|
||||||
this.label5.TabIndex = 5;
|
this.label5.TabIndex = 5;
|
||||||
this.label5.Text = "@";
|
this.label5.Text = "@";
|
||||||
//
|
//
|
||||||
@@ -392,7 +403,7 @@
|
|||||||
this.chkLater.Dock = System.Windows.Forms.DockStyle.Top;
|
this.chkLater.Dock = System.Windows.Forms.DockStyle.Top;
|
||||||
this.chkLater.Location = new System.Drawing.Point(6, 6);
|
this.chkLater.Location = new System.Drawing.Point(6, 6);
|
||||||
this.chkLater.Name = "chkLater";
|
this.chkLater.Name = "chkLater";
|
||||||
this.chkLater.Size = new System.Drawing.Size(279, 19);
|
this.chkLater.Size = new System.Drawing.Size(279, 17);
|
||||||
this.chkLater.TabIndex = 4;
|
this.chkLater.TabIndex = 4;
|
||||||
this.chkLater.Text = "Process Later";
|
this.chkLater.Text = "Process Later";
|
||||||
this.chkLater.UseVisualStyleBackColor = true;
|
this.chkLater.UseVisualStyleBackColor = true;
|
||||||
@@ -466,9 +477,9 @@
|
|||||||
//
|
//
|
||||||
this.sideNav1.BackColor = System.Drawing.SystemColors.Control;
|
this.sideNav1.BackColor = System.Drawing.SystemColors.Control;
|
||||||
this.sideNav1.Controls.Add(this.sideNavPanel5);
|
this.sideNav1.Controls.Add(this.sideNavPanel5);
|
||||||
this.sideNav1.Controls.Add(this.sideNavPanel2);
|
|
||||||
this.sideNav1.Controls.Add(this.sideNavPanel4);
|
|
||||||
this.sideNav1.Controls.Add(this.sideNavPanel3);
|
this.sideNav1.Controls.Add(this.sideNavPanel3);
|
||||||
|
this.sideNav1.Controls.Add(this.sideNavPanel4);
|
||||||
|
this.sideNav1.Controls.Add(this.sideNavPanel2);
|
||||||
this.sideNav1.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.sideNav1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.sideNav1.EnableClose = false;
|
this.sideNav1.EnableClose = false;
|
||||||
this.sideNav1.EnableMaximize = false;
|
this.sideNav1.EnableMaximize = false;
|
||||||
@@ -493,10 +504,10 @@
|
|||||||
this.sideNavPanel5.Controls.Add(this.itemPanel2);
|
this.sideNavPanel5.Controls.Add(this.itemPanel2);
|
||||||
this.sideNavPanel5.Controls.Add(this.itemPanel3);
|
this.sideNavPanel5.Controls.Add(this.itemPanel3);
|
||||||
this.sideNavPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.sideNavPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
this.sideNavPanel5.Location = new System.Drawing.Point(117, 35);
|
this.sideNavPanel5.Location = new System.Drawing.Point(112, 31);
|
||||||
this.sideNavPanel5.MinimumSize = new System.Drawing.Size(0, 493);
|
this.sideNavPanel5.MinimumSize = new System.Drawing.Size(0, 493);
|
||||||
this.sideNavPanel5.Name = "sideNavPanel5";
|
this.sideNavPanel5.Name = "sideNavPanel5";
|
||||||
this.sideNavPanel5.Size = new System.Drawing.Size(263, 493);
|
this.sideNavPanel5.Size = new System.Drawing.Size(268, 493);
|
||||||
this.sideNavPanel5.TabIndex = 26;
|
this.sideNavPanel5.TabIndex = 26;
|
||||||
//
|
//
|
||||||
// itemPanel1
|
// itemPanel1
|
||||||
@@ -541,7 +552,7 @@
|
|||||||
this.warningBox3.CloseButtonVisible = false;
|
this.warningBox3.CloseButtonVisible = false;
|
||||||
this.warningBox3.Image = ((System.Drawing.Image)(resources.GetObject("warningBox3.Image")));
|
this.warningBox3.Image = ((System.Drawing.Image)(resources.GetObject("warningBox3.Image")));
|
||||||
this.warningBox3.Location = new System.Drawing.Point(1, 61);
|
this.warningBox3.Location = new System.Drawing.Point(1, 61);
|
||||||
this.warningBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
this.warningBox3.Margin = new System.Windows.Forms.Padding(4);
|
||||||
this.warningBox3.Name = "warningBox3";
|
this.warningBox3.Name = "warningBox3";
|
||||||
this.warningBox3.OptionsButtonVisible = false;
|
this.warningBox3.OptionsButtonVisible = false;
|
||||||
this.warningBox3.Size = new System.Drawing.Size(264, 32);
|
this.warningBox3.Size = new System.Drawing.Size(264, 32);
|
||||||
@@ -554,7 +565,7 @@
|
|||||||
this.warningBox6.CloseButtonVisible = false;
|
this.warningBox6.CloseButtonVisible = false;
|
||||||
this.warningBox6.Image = ((System.Drawing.Image)(resources.GetObject("warningBox6.Image")));
|
this.warningBox6.Image = ((System.Drawing.Image)(resources.GetObject("warningBox6.Image")));
|
||||||
this.warningBox6.Location = new System.Drawing.Point(1, 97);
|
this.warningBox6.Location = new System.Drawing.Point(1, 97);
|
||||||
this.warningBox6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
this.warningBox6.Margin = new System.Windows.Forms.Padding(4);
|
||||||
this.warningBox6.Name = "warningBox6";
|
this.warningBox6.Name = "warningBox6";
|
||||||
this.warningBox6.OptionsButtonVisible = false;
|
this.warningBox6.OptionsButtonVisible = false;
|
||||||
this.warningBox6.Size = new System.Drawing.Size(264, 43);
|
this.warningBox6.Size = new System.Drawing.Size(264, 43);
|
||||||
@@ -593,10 +604,11 @@
|
|||||||
// itemPanel3
|
// itemPanel3
|
||||||
//
|
//
|
||||||
this.itemPanel3.Controls.Add(this.btnROsNotUsed);
|
this.itemPanel3.Controls.Add(this.btnROsNotUsed);
|
||||||
|
this.itemPanel3.Controls.Add(this.myTV_RO_DBs);
|
||||||
this.itemPanel3.DisabledBackColor = System.Drawing.Color.Empty;
|
this.itemPanel3.DisabledBackColor = System.Drawing.Color.Empty;
|
||||||
this.itemPanel3.Location = new System.Drawing.Point(0, 218);
|
this.itemPanel3.Location = new System.Drawing.Point(0, 218);
|
||||||
this.itemPanel3.Name = "itemPanel3";
|
this.itemPanel3.Name = "itemPanel3";
|
||||||
this.itemPanel3.Size = new System.Drawing.Size(267, 70);
|
this.itemPanel3.Size = new System.Drawing.Size(267, 300);
|
||||||
this.itemPanel3.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
|
this.itemPanel3.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
|
||||||
this.itemPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.DoubleLine;
|
this.itemPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.DoubleLine;
|
||||||
this.itemPanel3.Style.BorderColor.Color = System.Drawing.Color.DarkGray;
|
this.itemPanel3.Style.BorderColor.Color = System.Drawing.Color.DarkGray;
|
||||||
@@ -609,7 +621,7 @@
|
|||||||
this.btnROsNotUsed.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
this.btnROsNotUsed.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
this.btnROsNotUsed.Checked = true;
|
this.btnROsNotUsed.Checked = true;
|
||||||
this.btnROsNotUsed.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
this.btnROsNotUsed.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
this.btnROsNotUsed.Location = new System.Drawing.Point(19, 22);
|
this.btnROsNotUsed.Location = new System.Drawing.Point(19, 11);
|
||||||
this.btnROsNotUsed.Name = "btnROsNotUsed";
|
this.btnROsNotUsed.Name = "btnROsNotUsed";
|
||||||
this.btnROsNotUsed.Size = new System.Drawing.Size(227, 26);
|
this.btnROsNotUsed.Size = new System.Drawing.Size(227, 26);
|
||||||
this.btnROsNotUsed.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
this.btnROsNotUsed.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
@@ -619,6 +631,275 @@
|
|||||||
this.btnROsNotUsed.Text = "Generate Snapshot of ROs Not Used";
|
this.btnROsNotUsed.Text = "Generate Snapshot of ROs Not Used";
|
||||||
this.btnROsNotUsed.Click += new System.EventHandler(this.btnROsNotUsed_Click);
|
this.btnROsNotUsed.Click += new System.EventHandler(this.btnROsNotUsed_Click);
|
||||||
//
|
//
|
||||||
|
// sideNavPanel3
|
||||||
|
//
|
||||||
|
this.sideNavPanel3.Controls.Add(this.swCheckROLinks);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.labelX12);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.warningBox5);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.line3);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.swUpdateROVals);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.swRefreshTrans);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.labelX11);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.labelX6);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.warningBox1);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.myTV);
|
||||||
|
this.sideNavPanel3.Controls.Add(this.btnFixLinks);
|
||||||
|
this.sideNavPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
|
this.sideNavPanel3.Location = new System.Drawing.Point(112, 31);
|
||||||
|
this.sideNavPanel3.MinimumSize = new System.Drawing.Size(0, 540);
|
||||||
|
this.sideNavPanel3.Name = "sideNavPanel3";
|
||||||
|
this.sideNavPanel3.Size = new System.Drawing.Size(268, 540);
|
||||||
|
this.sideNavPanel3.TabIndex = 10;
|
||||||
|
this.sideNavPanel3.Visible = false;
|
||||||
|
//
|
||||||
|
// swCheckROLinks
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.swCheckROLinks.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.swCheckROLinks.Location = new System.Drawing.Point(10, 66);
|
||||||
|
this.swCheckROLinks.Name = "swCheckROLinks";
|
||||||
|
this.swCheckROLinks.Size = new System.Drawing.Size(91, 22);
|
||||||
|
this.swCheckROLinks.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.swCheckROLinks, new DevComponents.DotNetBar.SuperTooltipInfo("Check RO Links", "", resources.GetString("swCheckROLinks.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 150)));
|
||||||
|
this.swCheckROLinks.SwitchClickTogglesValue = true;
|
||||||
|
this.swCheckROLinks.TabIndex = 33;
|
||||||
|
this.swCheckROLinks.ValueChanged += new System.EventHandler(this.swCheckROLinks_ValueChanged);
|
||||||
|
//
|
||||||
|
// labelX12
|
||||||
|
//
|
||||||
|
this.labelX12.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.labelX12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.labelX12.Location = new System.Drawing.Point(107, 66);
|
||||||
|
this.labelX12.Name = "labelX12";
|
||||||
|
this.labelX12.Size = new System.Drawing.Size(186, 22);
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.labelX12, new DevComponents.DotNetBar.SuperTooltipInfo("Check RO Links", "", resources.GetString("labelX12.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(350, 175)));
|
||||||
|
this.labelX12.TabIndex = 32;
|
||||||
|
this.labelX12.Text = "Check RO Links";
|
||||||
|
//
|
||||||
|
// warningBox5
|
||||||
|
//
|
||||||
|
this.warningBox5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(219)))), ((int)(((byte)(249)))));
|
||||||
|
this.warningBox5.CloseButtonVisible = false;
|
||||||
|
this.warningBox5.Image = ((System.Drawing.Image)(resources.GetObject("warningBox5.Image")));
|
||||||
|
this.warningBox5.Location = new System.Drawing.Point(17, 145);
|
||||||
|
this.warningBox5.Margin = new System.Windows.Forms.Padding(4);
|
||||||
|
this.warningBox5.Name = "warningBox5";
|
||||||
|
this.warningBox5.OptionsButtonVisible = false;
|
||||||
|
this.warningBox5.Size = new System.Drawing.Size(262, 32);
|
||||||
|
this.warningBox5.TabIndex = 31;
|
||||||
|
this.warningBox5.Text = "<b>NOTE</b> These tools can take a long time to run";
|
||||||
|
//
|
||||||
|
// line3
|
||||||
|
//
|
||||||
|
this.line3.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.line3.Location = new System.Drawing.Point(6, 127);
|
||||||
|
this.line3.Name = "line3";
|
||||||
|
this.line3.Size = new System.Drawing.Size(285, 12);
|
||||||
|
this.line3.TabIndex = 30;
|
||||||
|
this.line3.Text = "line3";
|
||||||
|
//
|
||||||
|
// swUpdateROVals
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.swUpdateROVals.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.swUpdateROVals.Location = new System.Drawing.Point(10, 10);
|
||||||
|
this.swUpdateROVals.Name = "swUpdateROVals";
|
||||||
|
this.swUpdateROVals.Size = new System.Drawing.Size(91, 22);
|
||||||
|
this.swUpdateROVals.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.swUpdateROVals, new DevComponents.DotNetBar.SuperTooltipInfo("Update RO Values", "", resources.GetString("swUpdateROVals.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 150)));
|
||||||
|
this.swUpdateROVals.SwitchClickTogglesValue = true;
|
||||||
|
this.swUpdateROVals.TabIndex = 29;
|
||||||
|
this.swUpdateROVals.Value = true;
|
||||||
|
this.swUpdateROVals.ValueObject = "Y";
|
||||||
|
this.swUpdateROVals.ValueChanged += new System.EventHandler(this.swUpdateROVals_ValueChanged);
|
||||||
|
//
|
||||||
|
// swRefreshTrans
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.swRefreshTrans.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.swRefreshTrans.Location = new System.Drawing.Point(10, 38);
|
||||||
|
this.swRefreshTrans.Name = "swRefreshTrans";
|
||||||
|
this.swRefreshTrans.Size = new System.Drawing.Size(91, 22);
|
||||||
|
this.swRefreshTrans.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.swRefreshTrans, new DevComponents.DotNetBar.SuperTooltipInfo("Refresh Transitions", "", resources.GetString("swRefreshTrans.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(265, 175)));
|
||||||
|
this.swRefreshTrans.SwitchClickTogglesValue = true;
|
||||||
|
this.swRefreshTrans.TabIndex = 29;
|
||||||
|
this.swRefreshTrans.ValueChanged += new System.EventHandler(this.swRefreshTrans_ValueChanged);
|
||||||
|
//
|
||||||
|
// labelX11
|
||||||
|
//
|
||||||
|
this.labelX11.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.labelX11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.labelX11.Location = new System.Drawing.Point(107, 10);
|
||||||
|
this.labelX11.Name = "labelX11";
|
||||||
|
this.labelX11.Size = new System.Drawing.Size(186, 22);
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.labelX11, new DevComponents.DotNetBar.SuperTooltipInfo("Update RO Values", "", resources.GetString("labelX11.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 150)));
|
||||||
|
this.labelX11.TabIndex = 28;
|
||||||
|
this.labelX11.Text = "Update RO Values";
|
||||||
|
//
|
||||||
|
// labelX6
|
||||||
|
//
|
||||||
|
this.labelX6.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.labelX6.Location = new System.Drawing.Point(107, 38);
|
||||||
|
this.labelX6.Name = "labelX6";
|
||||||
|
this.labelX6.Size = new System.Drawing.Size(186, 22);
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.labelX6, new DevComponents.DotNetBar.SuperTooltipInfo("Refresh Transitions", "", resources.GetString("labelX6.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(256, 175)));
|
||||||
|
this.labelX6.TabIndex = 28;
|
||||||
|
this.labelX6.Text = "Refresh Transitions";
|
||||||
|
//
|
||||||
|
// warningBox1
|
||||||
|
//
|
||||||
|
this.warningBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(219)))), ((int)(((byte)(249)))));
|
||||||
|
this.warningBox1.CloseButtonVisible = false;
|
||||||
|
this.warningBox1.Image = ((System.Drawing.Image)(resources.GetObject("warningBox1.Image")));
|
||||||
|
this.warningBox1.Location = new System.Drawing.Point(17, 181);
|
||||||
|
this.warningBox1.Margin = new System.Windows.Forms.Padding(4);
|
||||||
|
this.warningBox1.Name = "warningBox1";
|
||||||
|
this.warningBox1.OptionsButtonVisible = false;
|
||||||
|
this.warningBox1.Size = new System.Drawing.Size(262, 43);
|
||||||
|
this.warningBox1.TabIndex = 7;
|
||||||
|
this.warningBox1.Text = " Be sure there is a current backup of the \r\n database prior to running these func" +
|
||||||
|
"tions";
|
||||||
|
//
|
||||||
|
// btnFixLinks
|
||||||
|
//
|
||||||
|
this.btnFixLinks.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
|
this.btnFixLinks.Checked = true;
|
||||||
|
this.btnFixLinks.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
|
this.btnFixLinks.Location = new System.Drawing.Point(10, 98);
|
||||||
|
this.btnFixLinks.Name = "btnFixLinks";
|
||||||
|
this.btnFixLinks.Size = new System.Drawing.Size(280, 23);
|
||||||
|
this.btnFixLinks.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.btnFixLinks, new DevComponents.DotNetBar.SuperTooltipInfo("Process Links", "", "This will run the selected RO Links or Transitions Links tool.\r\n\r\nClick on the on" +
|
||||||
|
"/off switches to turn on/off each tool.\r\n\r\nNote that only one of these tools can" +
|
||||||
|
" be run at a time.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(200, 130)));
|
||||||
|
this.btnFixLinks.TabIndex = 6;
|
||||||
|
this.btnFixLinks.Text = "Process Links";
|
||||||
|
this.btnFixLinks.Click += new System.EventHandler(this.btnFixLinks_Click);
|
||||||
|
//
|
||||||
|
// sideNavPanel4
|
||||||
|
//
|
||||||
|
this.sideNavPanel4.Controls.Add(this.swDeleteFolder);
|
||||||
|
this.sideNavPanel4.Controls.Add(this.labelX13);
|
||||||
|
this.sideNavPanel4.Controls.Add(this.swDeleteAnnotations);
|
||||||
|
this.sideNavPanel4.Controls.Add(this.labelX14);
|
||||||
|
this.sideNavPanel4.Controls.Add(this.myTVdel);
|
||||||
|
this.sideNavPanel4.Controls.Add(this.btnDeleteItems);
|
||||||
|
this.sideNavPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||||
|
this.sideNavPanel4.Location = new System.Drawing.Point(112, 31);
|
||||||
|
this.sideNavPanel4.MinimumSize = new System.Drawing.Size(0, 493);
|
||||||
|
this.sideNavPanel4.Name = "sideNavPanel4";
|
||||||
|
this.sideNavPanel4.Size = new System.Drawing.Size(268, 493);
|
||||||
|
this.sideNavPanel4.TabIndex = 27;
|
||||||
|
this.sideNavPanel4.Visible = false;
|
||||||
|
//
|
||||||
|
// swDeleteFolder
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.swDeleteFolder.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.swDeleteFolder.Location = new System.Drawing.Point(10, 43);
|
||||||
|
this.swDeleteFolder.Name = "swDeleteFolder";
|
||||||
|
this.swDeleteFolder.Size = new System.Drawing.Size(69, 22);
|
||||||
|
this.swDeleteFolder.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.swDeleteFolder, new DevComponents.DotNetBar.SuperTooltipInfo("Delete Folders", "", resources.GetString("swDeleteFolder.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 140)));
|
||||||
|
this.swDeleteFolder.SwitchClickTogglesValue = true;
|
||||||
|
this.swDeleteFolder.TabIndex = 39;
|
||||||
|
this.swDeleteFolder.ValueChanged += new System.EventHandler(this.swDeleteFolder_ValueChanged);
|
||||||
|
//
|
||||||
|
// labelX13
|
||||||
|
//
|
||||||
|
this.labelX13.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.labelX13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.labelX13.Location = new System.Drawing.Point(85, 42);
|
||||||
|
this.labelX13.Name = "labelX13";
|
||||||
|
this.labelX13.Size = new System.Drawing.Size(168, 22);
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.labelX13, new DevComponents.DotNetBar.SuperTooltipInfo("Delete Folders", "", resources.GetString("labelX13.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 140)));
|
||||||
|
this.labelX13.TabIndex = 38;
|
||||||
|
this.labelX13.Text = "Delete Folders";
|
||||||
|
//
|
||||||
|
// swDeleteAnnotations
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.swDeleteAnnotations.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.swDeleteAnnotations.Location = new System.Drawing.Point(10, 15);
|
||||||
|
this.swDeleteAnnotations.Name = "swDeleteAnnotations";
|
||||||
|
this.swDeleteAnnotations.Size = new System.Drawing.Size(69, 22);
|
||||||
|
this.swDeleteAnnotations.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.swDeleteAnnotations, new DevComponents.DotNetBar.SuperTooltipInfo("Delete Annotations", "", resources.GetString("swDeleteAnnotations.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 155)));
|
||||||
|
this.swDeleteAnnotations.SwitchClickTogglesValue = true;
|
||||||
|
this.swDeleteAnnotations.TabIndex = 37;
|
||||||
|
this.swDeleteAnnotations.Value = true;
|
||||||
|
this.swDeleteAnnotations.ValueObject = "Y";
|
||||||
|
this.swDeleteAnnotations.ValueChanged += new System.EventHandler(this.swDeleteAnnotations_ValueChanged);
|
||||||
|
//
|
||||||
|
// labelX14
|
||||||
|
//
|
||||||
|
this.labelX14.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||||
|
this.labelX14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.labelX14.Location = new System.Drawing.Point(85, 14);
|
||||||
|
this.labelX14.Name = "labelX14";
|
||||||
|
this.labelX14.Size = new System.Drawing.Size(186, 22);
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.labelX14, new DevComponents.DotNetBar.SuperTooltipInfo("Delete Annotations", "", resources.GetString("labelX14.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 155)));
|
||||||
|
this.labelX14.TabIndex = 36;
|
||||||
|
this.labelX14.Text = "Delete Annotations";
|
||||||
|
//
|
||||||
|
// myTVdel
|
||||||
|
//
|
||||||
|
this.myTVdel.CheckBoxes = true;
|
||||||
|
this.myTVdel.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
|
this.myTVdel.Location = new System.Drawing.Point(0, 126);
|
||||||
|
this.myTVdel.Name = "myTVdel";
|
||||||
|
this.myTVdel.Size = new System.Drawing.Size(268, 367);
|
||||||
|
this.myTVdel.TabIndex = 34;
|
||||||
|
this.myTVdel.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.myTV_AfterCheck);
|
||||||
|
//
|
||||||
|
// btnDeleteItems
|
||||||
|
//
|
||||||
|
this.btnDeleteItems.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
||||||
|
this.btnDeleteItems.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.btnDeleteItems.Checked = true;
|
||||||
|
this.btnDeleteItems.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||||
|
this.btnDeleteItems.Location = new System.Drawing.Point(39, 98);
|
||||||
|
this.btnDeleteItems.Name = "btnDeleteItems";
|
||||||
|
this.btnDeleteItems.Size = new System.Drawing.Size(189, 23);
|
||||||
|
this.btnDeleteItems.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
||||||
|
this.superTooltip1.SetSuperTooltip(this.btnDeleteItems, new DevComponents.DotNetBar.SuperTooltipInfo("Process Deletions", "", resources.GetString("btnDeleteItems.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(200, 175)));
|
||||||
|
this.btnDeleteItems.TabIndex = 35;
|
||||||
|
this.btnDeleteItems.Text = "Process Deletions";
|
||||||
|
this.btnDeleteItems.Click += new System.EventHandler(this.btnDeleteItems_Click);
|
||||||
|
//
|
||||||
// sideNavPanel2
|
// sideNavPanel2
|
||||||
//
|
//
|
||||||
this.sideNavPanel2.Controls.Add(this.swRefreshTblsForSrch);
|
this.sideNavPanel2.Controls.Add(this.swRefreshTblsForSrch);
|
||||||
@@ -681,7 +962,7 @@
|
|||||||
this.warningBox4.CloseButtonVisible = false;
|
this.warningBox4.CloseButtonVisible = false;
|
||||||
this.warningBox4.Image = ((System.Drawing.Image)(resources.GetObject("warningBox4.Image")));
|
this.warningBox4.Image = ((System.Drawing.Image)(resources.GetObject("warningBox4.Image")));
|
||||||
this.warningBox4.Location = new System.Drawing.Point(12, 264);
|
this.warningBox4.Location = new System.Drawing.Point(12, 264);
|
||||||
this.warningBox4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
this.warningBox4.Margin = new System.Windows.Forms.Padding(4);
|
||||||
this.warningBox4.Name = "warningBox4";
|
this.warningBox4.Name = "warningBox4";
|
||||||
this.warningBox4.OptionsButtonVisible = false;
|
this.warningBox4.OptionsButtonVisible = false;
|
||||||
this.warningBox4.Size = new System.Drawing.Size(264, 32);
|
this.warningBox4.Size = new System.Drawing.Size(264, 32);
|
||||||
@@ -694,7 +975,7 @@
|
|||||||
this.warningBox2.CloseButtonVisible = false;
|
this.warningBox2.CloseButtonVisible = false;
|
||||||
this.warningBox2.Image = ((System.Drawing.Image)(resources.GetObject("warningBox2.Image")));
|
this.warningBox2.Image = ((System.Drawing.Image)(resources.GetObject("warningBox2.Image")));
|
||||||
this.warningBox2.Location = new System.Drawing.Point(12, 302);
|
this.warningBox2.Location = new System.Drawing.Point(12, 302);
|
||||||
this.warningBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
this.warningBox2.Margin = new System.Windows.Forms.Padding(4);
|
||||||
this.warningBox2.Name = "warningBox2";
|
this.warningBox2.Name = "warningBox2";
|
||||||
this.warningBox2.OptionsButtonVisible = false;
|
this.warningBox2.OptionsButtonVisible = false;
|
||||||
this.warningBox2.Size = new System.Drawing.Size(264, 43);
|
this.warningBox2.Size = new System.Drawing.Size(264, 43);
|
||||||
@@ -869,275 +1150,6 @@
|
|||||||
this.btnRunRepair.Text = "Run Repair";
|
this.btnRunRepair.Text = "Run Repair";
|
||||||
this.btnRunRepair.Click += new System.EventHandler(this.btnRunRepair_Click);
|
this.btnRunRepair.Click += new System.EventHandler(this.btnRunRepair_Click);
|
||||||
//
|
//
|
||||||
// sideNavPanel4
|
|
||||||
//
|
|
||||||
this.sideNavPanel4.Controls.Add(this.swDeleteFolder);
|
|
||||||
this.sideNavPanel4.Controls.Add(this.labelX13);
|
|
||||||
this.sideNavPanel4.Controls.Add(this.swDeleteAnnotations);
|
|
||||||
this.sideNavPanel4.Controls.Add(this.labelX14);
|
|
||||||
this.sideNavPanel4.Controls.Add(this.myTVdel);
|
|
||||||
this.sideNavPanel4.Controls.Add(this.btnDeleteItems);
|
|
||||||
this.sideNavPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
||||||
this.sideNavPanel4.Location = new System.Drawing.Point(112, 31);
|
|
||||||
this.sideNavPanel4.MinimumSize = new System.Drawing.Size(0, 493);
|
|
||||||
this.sideNavPanel4.Name = "sideNavPanel4";
|
|
||||||
this.sideNavPanel4.Size = new System.Drawing.Size(268, 493);
|
|
||||||
this.sideNavPanel4.TabIndex = 27;
|
|
||||||
this.sideNavPanel4.Visible = false;
|
|
||||||
//
|
|
||||||
// swDeleteFolder
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.swDeleteFolder.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.swDeleteFolder.Location = new System.Drawing.Point(10, 43);
|
|
||||||
this.swDeleteFolder.Name = "swDeleteFolder";
|
|
||||||
this.swDeleteFolder.Size = new System.Drawing.Size(69, 22);
|
|
||||||
this.swDeleteFolder.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.swDeleteFolder, new DevComponents.DotNetBar.SuperTooltipInfo("Delete Folders", "", resources.GetString("swDeleteFolder.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 140)));
|
|
||||||
this.swDeleteFolder.SwitchClickTogglesValue = true;
|
|
||||||
this.swDeleteFolder.TabIndex = 39;
|
|
||||||
this.swDeleteFolder.ValueChanged += new System.EventHandler(this.swDeleteFolder_ValueChanged);
|
|
||||||
//
|
|
||||||
// labelX13
|
|
||||||
//
|
|
||||||
this.labelX13.BackColor = System.Drawing.Color.Transparent;
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.labelX13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
||||||
this.labelX13.Location = new System.Drawing.Point(85, 42);
|
|
||||||
this.labelX13.Name = "labelX13";
|
|
||||||
this.labelX13.Size = new System.Drawing.Size(168, 22);
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.labelX13, new DevComponents.DotNetBar.SuperTooltipInfo("Delete Folders", "", resources.GetString("labelX13.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 140)));
|
|
||||||
this.labelX13.TabIndex = 38;
|
|
||||||
this.labelX13.Text = "Delete Folders";
|
|
||||||
//
|
|
||||||
// swDeleteAnnotations
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.swDeleteAnnotations.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.swDeleteAnnotations.Location = new System.Drawing.Point(10, 15);
|
|
||||||
this.swDeleteAnnotations.Name = "swDeleteAnnotations";
|
|
||||||
this.swDeleteAnnotations.Size = new System.Drawing.Size(69, 22);
|
|
||||||
this.swDeleteAnnotations.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.swDeleteAnnotations, new DevComponents.DotNetBar.SuperTooltipInfo("Delete Annotations", "", resources.GetString("swDeleteAnnotations.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 155)));
|
|
||||||
this.swDeleteAnnotations.SwitchClickTogglesValue = true;
|
|
||||||
this.swDeleteAnnotations.TabIndex = 37;
|
|
||||||
this.swDeleteAnnotations.Value = true;
|
|
||||||
this.swDeleteAnnotations.ValueObject = "Y";
|
|
||||||
this.swDeleteAnnotations.ValueChanged += new System.EventHandler(this.swDeleteAnnotations_ValueChanged);
|
|
||||||
//
|
|
||||||
// labelX14
|
|
||||||
//
|
|
||||||
this.labelX14.BackColor = System.Drawing.Color.Transparent;
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.labelX14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
||||||
this.labelX14.Location = new System.Drawing.Point(85, 14);
|
|
||||||
this.labelX14.Name = "labelX14";
|
|
||||||
this.labelX14.Size = new System.Drawing.Size(186, 22);
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.labelX14, new DevComponents.DotNetBar.SuperTooltipInfo("Delete Annotations", "", resources.GetString("labelX14.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 155)));
|
|
||||||
this.labelX14.TabIndex = 36;
|
|
||||||
this.labelX14.Text = "Delete Annotations";
|
|
||||||
//
|
|
||||||
// myTVdel
|
|
||||||
//
|
|
||||||
this.myTVdel.CheckBoxes = true;
|
|
||||||
this.myTVdel.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
||||||
this.myTVdel.Location = new System.Drawing.Point(0, 126);
|
|
||||||
this.myTVdel.Name = "myTVdel";
|
|
||||||
this.myTVdel.Size = new System.Drawing.Size(268, 367);
|
|
||||||
this.myTVdel.TabIndex = 34;
|
|
||||||
this.myTVdel.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.myTV_AfterCheck);
|
|
||||||
//
|
|
||||||
// btnDeleteItems
|
|
||||||
//
|
|
||||||
this.btnDeleteItems.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
|
||||||
this.btnDeleteItems.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
||||||
| System.Windows.Forms.AnchorStyles.Right)));
|
|
||||||
this.btnDeleteItems.Checked = true;
|
|
||||||
this.btnDeleteItems.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
|
||||||
this.btnDeleteItems.Location = new System.Drawing.Point(39, 98);
|
|
||||||
this.btnDeleteItems.Name = "btnDeleteItems";
|
|
||||||
this.btnDeleteItems.Size = new System.Drawing.Size(189, 23);
|
|
||||||
this.btnDeleteItems.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.btnDeleteItems, new DevComponents.DotNetBar.SuperTooltipInfo("Process Deletions", "", resources.GetString("btnDeleteItems.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(200, 175)));
|
|
||||||
this.btnDeleteItems.TabIndex = 35;
|
|
||||||
this.btnDeleteItems.Text = "Process Deletions";
|
|
||||||
this.btnDeleteItems.Click += new System.EventHandler(this.btnDeleteItems_Click);
|
|
||||||
//
|
|
||||||
// sideNavPanel3
|
|
||||||
//
|
|
||||||
this.sideNavPanel3.Controls.Add(this.swCheckROLinks);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.labelX12);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.warningBox5);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.line3);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.swUpdateROVals);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.swRefreshTrans);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.labelX11);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.labelX6);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.warningBox1);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.myTV);
|
|
||||||
this.sideNavPanel3.Controls.Add(this.btnFixLinks);
|
|
||||||
this.sideNavPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
||||||
this.sideNavPanel3.Location = new System.Drawing.Point(112, 31);
|
|
||||||
this.sideNavPanel3.MinimumSize = new System.Drawing.Size(0, 540);
|
|
||||||
this.sideNavPanel3.Name = "sideNavPanel3";
|
|
||||||
this.sideNavPanel3.Size = new System.Drawing.Size(268, 540);
|
|
||||||
this.sideNavPanel3.TabIndex = 10;
|
|
||||||
this.sideNavPanel3.Visible = false;
|
|
||||||
//
|
|
||||||
// swCheckROLinks
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.swCheckROLinks.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.swCheckROLinks.Location = new System.Drawing.Point(10, 66);
|
|
||||||
this.swCheckROLinks.Name = "swCheckROLinks";
|
|
||||||
this.swCheckROLinks.Size = new System.Drawing.Size(91, 22);
|
|
||||||
this.swCheckROLinks.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.swCheckROLinks, new DevComponents.DotNetBar.SuperTooltipInfo("Check RO Links", "", resources.GetString("swCheckROLinks.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 150)));
|
|
||||||
this.swCheckROLinks.SwitchClickTogglesValue = true;
|
|
||||||
this.swCheckROLinks.TabIndex = 33;
|
|
||||||
this.swCheckROLinks.ValueChanged += new System.EventHandler(this.swCheckROLinks_ValueChanged);
|
|
||||||
//
|
|
||||||
// labelX12
|
|
||||||
//
|
|
||||||
this.labelX12.BackColor = System.Drawing.Color.Transparent;
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.labelX12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
||||||
this.labelX12.Location = new System.Drawing.Point(107, 66);
|
|
||||||
this.labelX12.Name = "labelX12";
|
|
||||||
this.labelX12.Size = new System.Drawing.Size(186, 22);
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.labelX12, new DevComponents.DotNetBar.SuperTooltipInfo("Check RO Links", "", resources.GetString("labelX12.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(350, 175)));
|
|
||||||
this.labelX12.TabIndex = 32;
|
|
||||||
this.labelX12.Text = "Check RO Links";
|
|
||||||
//
|
|
||||||
// warningBox5
|
|
||||||
//
|
|
||||||
this.warningBox5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(219)))), ((int)(((byte)(249)))));
|
|
||||||
this.warningBox5.CloseButtonVisible = false;
|
|
||||||
this.warningBox5.Image = ((System.Drawing.Image)(resources.GetObject("warningBox5.Image")));
|
|
||||||
this.warningBox5.Location = new System.Drawing.Point(17, 145);
|
|
||||||
this.warningBox5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
||||||
this.warningBox5.Name = "warningBox5";
|
|
||||||
this.warningBox5.OptionsButtonVisible = false;
|
|
||||||
this.warningBox5.Size = new System.Drawing.Size(262, 32);
|
|
||||||
this.warningBox5.TabIndex = 31;
|
|
||||||
this.warningBox5.Text = "<b>NOTE</b> These tools can take a long time to run";
|
|
||||||
//
|
|
||||||
// line3
|
|
||||||
//
|
|
||||||
this.line3.BackColor = System.Drawing.Color.Transparent;
|
|
||||||
this.line3.Location = new System.Drawing.Point(6, 127);
|
|
||||||
this.line3.Name = "line3";
|
|
||||||
this.line3.Size = new System.Drawing.Size(285, 12);
|
|
||||||
this.line3.TabIndex = 30;
|
|
||||||
this.line3.Text = "line3";
|
|
||||||
//
|
|
||||||
// swUpdateROVals
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.swUpdateROVals.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.swUpdateROVals.Location = new System.Drawing.Point(10, 10);
|
|
||||||
this.swUpdateROVals.Name = "swUpdateROVals";
|
|
||||||
this.swUpdateROVals.Size = new System.Drawing.Size(91, 22);
|
|
||||||
this.swUpdateROVals.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.swUpdateROVals, new DevComponents.DotNetBar.SuperTooltipInfo("Update RO Values", "", resources.GetString("swUpdateROVals.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 150)));
|
|
||||||
this.swUpdateROVals.SwitchClickTogglesValue = true;
|
|
||||||
this.swUpdateROVals.TabIndex = 29;
|
|
||||||
this.swUpdateROVals.Value = true;
|
|
||||||
this.swUpdateROVals.ValueObject = "Y";
|
|
||||||
this.swUpdateROVals.ValueChanged += new System.EventHandler(this.swUpdateROVals_ValueChanged);
|
|
||||||
//
|
|
||||||
// swRefreshTrans
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.swRefreshTrans.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.swRefreshTrans.Location = new System.Drawing.Point(10, 38);
|
|
||||||
this.swRefreshTrans.Name = "swRefreshTrans";
|
|
||||||
this.swRefreshTrans.Size = new System.Drawing.Size(91, 22);
|
|
||||||
this.swRefreshTrans.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.swRefreshTrans, new DevComponents.DotNetBar.SuperTooltipInfo("Refresh Transitions", "", resources.GetString("swRefreshTrans.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(265, 175)));
|
|
||||||
this.swRefreshTrans.SwitchClickTogglesValue = true;
|
|
||||||
this.swRefreshTrans.TabIndex = 29;
|
|
||||||
this.swRefreshTrans.ValueChanged += new System.EventHandler(this.swRefreshTrans_ValueChanged);
|
|
||||||
//
|
|
||||||
// labelX11
|
|
||||||
//
|
|
||||||
this.labelX11.BackColor = System.Drawing.Color.Transparent;
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.labelX11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
||||||
this.labelX11.Location = new System.Drawing.Point(107, 10);
|
|
||||||
this.labelX11.Name = "labelX11";
|
|
||||||
this.labelX11.Size = new System.Drawing.Size(186, 22);
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.labelX11, new DevComponents.DotNetBar.SuperTooltipInfo("Update RO Values", "", resources.GetString("labelX11.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 150)));
|
|
||||||
this.labelX11.TabIndex = 28;
|
|
||||||
this.labelX11.Text = "Update RO Values";
|
|
||||||
//
|
|
||||||
// labelX6
|
|
||||||
//
|
|
||||||
this.labelX6.BackColor = System.Drawing.Color.Transparent;
|
|
||||||
//
|
|
||||||
//
|
|
||||||
//
|
|
||||||
this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
|
||||||
this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
||||||
this.labelX6.Location = new System.Drawing.Point(107, 38);
|
|
||||||
this.labelX6.Name = "labelX6";
|
|
||||||
this.labelX6.Size = new System.Drawing.Size(186, 22);
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.labelX6, new DevComponents.DotNetBar.SuperTooltipInfo("Refresh Transitions", "", resources.GetString("labelX6.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(256, 175)));
|
|
||||||
this.labelX6.TabIndex = 28;
|
|
||||||
this.labelX6.Text = "Refresh Transitions";
|
|
||||||
//
|
|
||||||
// warningBox1
|
|
||||||
//
|
|
||||||
this.warningBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(219)))), ((int)(((byte)(249)))));
|
|
||||||
this.warningBox1.CloseButtonVisible = false;
|
|
||||||
this.warningBox1.Image = ((System.Drawing.Image)(resources.GetObject("warningBox1.Image")));
|
|
||||||
this.warningBox1.Location = new System.Drawing.Point(17, 181);
|
|
||||||
this.warningBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
||||||
this.warningBox1.Name = "warningBox1";
|
|
||||||
this.warningBox1.OptionsButtonVisible = false;
|
|
||||||
this.warningBox1.Size = new System.Drawing.Size(262, 43);
|
|
||||||
this.warningBox1.TabIndex = 7;
|
|
||||||
this.warningBox1.Text = " Be sure there is a current backup of the \r\n database prior to running these func" +
|
|
||||||
"tions";
|
|
||||||
//
|
|
||||||
// btnFixLinks
|
|
||||||
//
|
|
||||||
this.btnFixLinks.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
|
|
||||||
this.btnFixLinks.Checked = true;
|
|
||||||
this.btnFixLinks.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
|
||||||
this.btnFixLinks.Location = new System.Drawing.Point(10, 98);
|
|
||||||
this.btnFixLinks.Name = "btnFixLinks";
|
|
||||||
this.btnFixLinks.Size = new System.Drawing.Size(280, 23);
|
|
||||||
this.btnFixLinks.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
|
|
||||||
this.superTooltip1.SetSuperTooltip(this.btnFixLinks, new DevComponents.DotNetBar.SuperTooltipInfo("Process Links", "", "This will run the selected RO Links or Transitions Links tool.\r\n\r\nClick on the on" +
|
|
||||||
"/off switches to turn on/off each tool.\r\n\r\nNote that only one of these tools can" +
|
|
||||||
" be run at a time.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(200, 130)));
|
|
||||||
this.btnFixLinks.TabIndex = 6;
|
|
||||||
this.btnFixLinks.Text = "Process Links";
|
|
||||||
this.btnFixLinks.Click += new System.EventHandler(this.btnFixLinks_Click);
|
|
||||||
//
|
|
||||||
// sideNavItem1
|
// sideNavItem1
|
||||||
//
|
//
|
||||||
this.sideNavItem1.IsSystemMenu = true;
|
this.sideNavItem1.IsSystemMenu = true;
|
||||||
@@ -1324,9 +1336,9 @@
|
|||||||
this.itemPanel1.ResumeLayout(false);
|
this.itemPanel1.ResumeLayout(false);
|
||||||
this.itemPanel2.ResumeLayout(false);
|
this.itemPanel2.ResumeLayout(false);
|
||||||
this.itemPanel3.ResumeLayout(false);
|
this.itemPanel3.ResumeLayout(false);
|
||||||
this.sideNavPanel2.ResumeLayout(false);
|
|
||||||
this.sideNavPanel4.ResumeLayout(false);
|
|
||||||
this.sideNavPanel3.ResumeLayout(false);
|
this.sideNavPanel3.ResumeLayout(false);
|
||||||
|
this.sideNavPanel4.ResumeLayout(false);
|
||||||
|
this.sideNavPanel2.ResumeLayout(false);
|
||||||
this.panelEx4.ResumeLayout(false);
|
this.panelEx4.ResumeLayout(false);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
@@ -1335,6 +1347,7 @@
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private System.Windows.Forms.TreeView myTV;
|
private System.Windows.Forms.TreeView myTV;
|
||||||
|
private System.Windows.Forms.TreeView myTV_RO_DBs;
|
||||||
private System.Windows.Forms.SplitContainer splitContainer3;
|
private System.Windows.Forms.SplitContainer splitContainer3;
|
||||||
private DevComponents.DotNetBar.PanelEx panelEx3;
|
private DevComponents.DotNetBar.PanelEx panelEx3;
|
||||||
private System.Windows.Forms.TextBox txtResults;
|
private System.Windows.Forms.TextBox txtResults;
|
||||||
|
|||||||
@@ -149,6 +149,27 @@ namespace VEPROMS
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//C2026-002 Enhancements to new admin Tool for ROs not used.
|
||||||
|
private void ResetmyTV_RO_DBs()
|
||||||
|
{
|
||||||
|
this.Cursor = Cursors.WaitCursor;
|
||||||
|
myTV_RO_DBs.Nodes.Clear();
|
||||||
|
|
||||||
|
TreeNode tn = myTV_RO_DBs.Nodes.Add("Select All");
|
||||||
|
tn.Tag = 0;
|
||||||
|
tn.Checked = true;
|
||||||
|
|
||||||
|
foreach (DataRow rw in GeneralReports.GetRODBs().Rows)
|
||||||
|
{
|
||||||
|
TreeNode tn_db = tn.Nodes.Add(rw["dbiTitle"].ToString());
|
||||||
|
tn_db.Tag = rw["dbiID"].ToString();
|
||||||
|
tn_db.Checked = true;
|
||||||
|
}
|
||||||
|
tn.Expand();
|
||||||
|
|
||||||
|
this.Cursor = Cursors.Default;
|
||||||
|
}
|
||||||
|
|
||||||
private void ResetTV(bool noProcs)
|
private void ResetTV(bool noProcs)
|
||||||
{
|
{
|
||||||
btnFixLinks.Enabled = false;
|
btnFixLinks.Enabled = false;
|
||||||
@@ -1071,6 +1092,24 @@ namespace VEPROMS
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void myTV_AfterCheck(object sender, TreeViewEventArgs e)
|
private void myTV_AfterCheck(object sender, TreeViewEventArgs e)
|
||||||
|
{
|
||||||
|
//B2025 - 013 Admin Tool Tree Behavior
|
||||||
|
//only want to perform this if
|
||||||
|
// not an unknown action
|
||||||
|
// aka is a mouse click
|
||||||
|
// if this is fire-ing because clicked a parent or a child of an item
|
||||||
|
// want this to only fire once - for the item clicked - not for parents/children
|
||||||
|
if (e.Action != TreeViewAction.Unknown)
|
||||||
|
{
|
||||||
|
TreeView_AfterCheck(sender, e);
|
||||||
|
|
||||||
|
btnFixLinks.Enabled = btnDeleteItems.Enabled = AtLeastOneNodeChecked(((TreeView)sender).Nodes); // C2017-030 support for Refresh Transitions/Update RO Values
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//C2026-002 Enhancements to new admin Tool for ROs not used.
|
||||||
|
private void TreeView_AfterCheck(object sender, TreeViewEventArgs e)
|
||||||
{
|
{
|
||||||
//B2025 - 013 Admin Tool Tree Behavior
|
//B2025 - 013 Admin Tool Tree Behavior
|
||||||
//only want to perform this if
|
//only want to perform this if
|
||||||
@@ -1092,12 +1131,9 @@ namespace VEPROMS
|
|||||||
DiselectParentNodes(e.Node.Parent);
|
DiselectParentNodes(e.Node.Parent);
|
||||||
DiselectChildNodes(e.Node.Nodes);
|
DiselectChildNodes(e.Node.Nodes);
|
||||||
}
|
}
|
||||||
|
|
||||||
btnFixLinks.Enabled = btnDeleteItems.Enabled = AtLeastOneNodeChecked(((TreeView)sender).Nodes); // C2017-030 support for Refresh Transitions/Update RO Values
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DiselectParentNodes(TreeNode parent)
|
private void DiselectParentNodes(TreeNode parent)
|
||||||
{
|
{
|
||||||
while (parent != null)
|
while (parent != null)
|
||||||
@@ -1244,6 +1280,7 @@ namespace VEPROMS
|
|||||||
{
|
{
|
||||||
AdminToolType = E_AdminToolType.Maintenance;
|
AdminToolType = E_AdminToolType.Maintenance;
|
||||||
setupProgessSteps1();
|
setupProgessSteps1();
|
||||||
|
ResetmyTV_RO_DBs(); //C2026-002 Enhancements to new admin Tool for ROs not used.
|
||||||
|
|
||||||
//notify Set Admin user that only Full Admins can run maintenance tools
|
//notify Set Admin user that only Full Admins can run maintenance tools
|
||||||
if (!IsAdministratorUser)
|
if (!IsAdministratorUser)
|
||||||
@@ -1798,8 +1835,21 @@ namespace VEPROMS
|
|||||||
txtResults.AppendText(statmsg);
|
txtResults.AppendText(statmsg);
|
||||||
txtResults.AppendText(Environment.NewLine);
|
txtResults.AppendText(Environment.NewLine);
|
||||||
|
|
||||||
|
//C2026-002 Enhancements to new admin Tool for ROs not used.
|
||||||
|
//Get the selected nodes
|
||||||
|
DataTable dtIDs = new DataTable();
|
||||||
|
dtIDs.Columns.Add("ID");
|
||||||
|
|
||||||
|
foreach (TreeNode tn in myTV_RO_DBs.Nodes[0].Nodes)
|
||||||
|
if (tn.Checked)
|
||||||
|
{
|
||||||
|
DataRow dtrw = dtIDs.NewRow();
|
||||||
|
dtrw["ID"] = int.Parse(tn.Tag.ToString());
|
||||||
|
dtIDs.Rows.Add(dtrw);
|
||||||
|
}
|
||||||
|
|
||||||
//Generate the data for ROs Not Used and save it to a TreeView
|
//Generate the data for ROs Not Used and save it to a TreeView
|
||||||
TreeView tv = TreeViewExtensions.GetROTree(GeneralReports.GetROsNotUsedInPROMS(), true);
|
TreeView tv = TreeViewExtensions.GetROTree(GeneralReports.GetROsNotUsedInPROMS(dtIDs), true);
|
||||||
//Output the TreeView as an Image
|
//Output the TreeView as an Image
|
||||||
if (tv.Nodes.Count != 0)
|
if (tv.Nodes.Count != 0)
|
||||||
tv.SaveTreeViewAsImage(sfd.FileName);
|
tv.SaveTreeViewAsImage(sfd.FileName);
|
||||||
|
|||||||
@@ -117,15 +117,6 @@
|
|||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<data name="btnIndexMaint.Tooltip" xml:space="preserve">
|
|
||||||
<value>This will perform Index Maintenance to realign indexes to optimize performance.
|
|
||||||
This function will cause no change to data or records in PROMS.
|
|
||||||
It should however be performed when other users are not in PROMS, as it could
|
|
||||||
cause slowdown or errors for other users while it is running.</value>
|
|
||||||
</data>
|
|
||||||
<metadata name="superTooltip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<value>17, 17</value>
|
|
||||||
</metadata>
|
|
||||||
<data name="btnPurgeChange.Tooltip" xml:space="preserve">
|
<data name="btnPurgeChange.Tooltip" xml:space="preserve">
|
||||||
<value>Purges all audit information and change history older than the above date.
|
<value>Purges all audit information and change history older than the above date.
|
||||||
It is recommended that you perform a database backup before performing this action.
|
It is recommended that you perform a database backup before performing this action.
|
||||||
@@ -167,10 +158,55 @@ Only Full PROMS Administrator Users can perform this action.</value>
|
|||||||
dj38fYbVglHy1FGJt57uL9ZS10IN9cxfJPvXCzTgqSKH5xwNzVXSkFBBDsFKA4KV7IKVegQrda2e7j5N
|
dj38fYbVglHy1FGJt57uL9ZS10IN9cxfJPvXCzTgqSKH5xwNzVXSkFBBDsFKA4KV7IKVegQrda2e7j5N
|
||||||
ud8AKwnMnBpmYFAAAAAASUVORK5CYII=
|
ud8AKwnMnBpmYFAAAAAASUVORK5CYII=
|
||||||
</value>
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnIndexMaint.Tooltip" xml:space="preserve">
|
||||||
|
<value>This will perform Index Maintenance to realign indexes to optimize performance.
|
||||||
|
This function will cause no change to data or records in PROMS.
|
||||||
|
It should however be performed when other users are not in PROMS, as it could
|
||||||
|
cause slowdown or errors for other users while it is running.</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="superTooltip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="superTooltip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>17, 17</value>
|
<value>17, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<data name="swDeleteFolder.SuperTooltip" xml:space="preserve">
|
||||||
|
<value>This allows the user to remove folders and sub folders as well as their contents.
|
||||||
|
|
||||||
|
Be sure a current backup of the database exists prior performing this function.
|
||||||
|
|
||||||
|
It is recommended that this be done during off hours.
|
||||||
|
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="labelX13.SuperTooltip" xml:space="preserve">
|
||||||
|
<value>This allows the user to remove folders and sub folders as well as their contents.
|
||||||
|
|
||||||
|
Be sure a current backup of the database exists prior performing this function.
|
||||||
|
|
||||||
|
It is recommended that this be done during off hours.
|
||||||
|
|
||||||
|
</value>
|
||||||
|
</data>
|
||||||
|
<data name="swDeleteAnnotations.SuperTooltip" xml:space="preserve">
|
||||||
|
<value>This function will allow the user to remove annotations from the selected working drafts.
|
||||||
|
|
||||||
|
Be sure a current backup of the database exists prior to running this function.
|
||||||
|
|
||||||
|
If more than one working draft is selected, it is recommended that this be performed during off hours.</value>
|
||||||
|
</data>
|
||||||
|
<data name="labelX14.SuperTooltip" xml:space="preserve">
|
||||||
|
<value>This function will allow the user to remove annotations from the selected working drafts.
|
||||||
|
|
||||||
|
Be sure a current backup of the database exists prior to running this function.
|
||||||
|
|
||||||
|
If more than one working draft is selected, it is recommended that this be performed during off hours.</value>
|
||||||
|
</data>
|
||||||
|
<data name="btnDeleteItems.SuperTooltip" xml:space="preserve">
|
||||||
|
<value>This will allow for the deletion of groups of annotations and allow for deleting entire folders within PROMS. Use the tree nodes to select which items to delete.
|
||||||
|
|
||||||
|
Click on the on/off switches to turn on/off each tool.
|
||||||
|
|
||||||
|
Note that only one of these tools can be run at a time.</value>
|
||||||
|
</data>
|
||||||
<data name="swRefreshTblsForSrch.SuperTooltip" xml:space="preserve">
|
<data name="swRefreshTblsForSrch.SuperTooltip" xml:space="preserve">
|
||||||
<value>When Word attachments are modified and saved, PROMS will create a PDF of the attachment contents and save it in the database. When this is done, all the of the RO references are resolved as well as pagination of the attachment. This speeds up the overall printing of the procedure in that PROMS simply inserts the attachment contents.
|
<value>When Word attachments are modified and saved, PROMS will create a PDF of the attachment contents and save it in the database. When this is done, all the of the RO references are resolved as well as pagination of the attachment. This speeds up the overall printing of the procedure in that PROMS simply inserts the attachment contents.
|
||||||
|
|
||||||
@@ -266,45 +302,6 @@ Should an item become orphaned (disconnected) from the rest of the data, it will
|
|||||||
|
|
||||||
Should an item become orphaned (disconnected) from the rest of the data, it will no longer be accessible. This tool removes any orphaned items from the database.
|
Should an item become orphaned (disconnected) from the rest of the data, it will no longer be accessible. This tool removes any orphaned items from the database.
|
||||||
</value>
|
</value>
|
||||||
</data>
|
|
||||||
<data name="swDeleteFolder.SuperTooltip" xml:space="preserve">
|
|
||||||
<value>This allows the user to remove folders and sub folders as well as their contents.
|
|
||||||
|
|
||||||
Be sure a current backup of the database exists prior performing this function.
|
|
||||||
|
|
||||||
It is recommended that this be done during off hours.
|
|
||||||
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="labelX13.SuperTooltip" xml:space="preserve">
|
|
||||||
<value>This allows the user to remove folders and sub folders as well as their contents.
|
|
||||||
|
|
||||||
Be sure a current backup of the database exists prior performing this function.
|
|
||||||
|
|
||||||
It is recommended that this be done during off hours.
|
|
||||||
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="swDeleteAnnotations.SuperTooltip" xml:space="preserve">
|
|
||||||
<value>This function will allow the user to remove annotations from the selected working drafts.
|
|
||||||
|
|
||||||
Be sure a current backup of the database exists prior to running this function.
|
|
||||||
|
|
||||||
If more than one working draft is selected, it is recommended that this be performed during off hours.</value>
|
|
||||||
</data>
|
|
||||||
<data name="labelX14.SuperTooltip" xml:space="preserve">
|
|
||||||
<value>This function will allow the user to remove annotations from the selected working drafts.
|
|
||||||
|
|
||||||
Be sure a current backup of the database exists prior to running this function.
|
|
||||||
|
|
||||||
If more than one working draft is selected, it is recommended that this be performed during off hours.</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnDeleteItems.SuperTooltip" xml:space="preserve">
|
|
||||||
<value>This will allow for the deletion of groups of annotations and allow for deleting entire folders within PROMS. Use the tree nodes to select which items to delete.
|
|
||||||
|
|
||||||
Click on the on/off switches to turn on/off each tool.
|
|
||||||
|
|
||||||
Note that only one of these tools can be run at a time.</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="swCheckROLinks.SuperTooltip" xml:space="preserve">
|
<data name="swCheckROLinks.SuperTooltip" xml:space="preserve">
|
||||||
<value>This allows the user to check referenced objects links in procedure step data for multiple working drafts in a batch mode.
|
<value>This allows the user to check referenced objects links in procedure step data for multiple working drafts in a batch mode.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
|
|
||||||
#region Get General Reports
|
#region Get General Reports
|
||||||
//CSM - C2025-043 report RO's that are not used in any of the PROMS data.
|
//CSM - C2025-043 report RO's that are not used in any of the PROMS data.
|
||||||
public static DataTable GetROsNotUsedInPROMS()
|
public static DataTable GetROsNotUsedInPROMS(DataTable dtDBids)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@@ -22,6 +22,10 @@ namespace VEPROMS.CSLA.Library
|
|||||||
cm.CommandType = CommandType.StoredProcedure;
|
cm.CommandType = CommandType.StoredProcedure;
|
||||||
cm.CommandText = "vesp_GetROsNotUsed";
|
cm.CommandText = "vesp_GetROsNotUsed";
|
||||||
cm.CommandTimeout = 0;
|
cm.CommandTimeout = 0;
|
||||||
|
//Pass table Valued parameter to Store Procedure
|
||||||
|
SqlParameter sqlParam = cm.Parameters.AddWithValue("@dbIDs", dtDBids);
|
||||||
|
sqlParam.SqlDbType = SqlDbType.Structured;
|
||||||
|
|
||||||
using (SqlDataAdapter da = new SqlDataAdapter(cm))
|
using (SqlDataAdapter da = new SqlDataAdapter(cm))
|
||||||
{
|
{
|
||||||
DataTable dt = new DataTable();
|
DataTable dt = new DataTable();
|
||||||
@@ -36,6 +40,36 @@ namespace VEPROMS.CSLA.Library
|
|||||||
throw new DbCslaException("Error in GetROsNotUsedInPROMS Report: retrieving data failed", ex);
|
throw new DbCslaException("Error in GetROsNotUsedInPROMS Report: retrieving data failed", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//C2026-002 Enhancements to new admin Tool for ROs not used.
|
||||||
|
//used to build checkboxes of dbs to include
|
||||||
|
public static DataTable GetRODBs()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (SqlConnection cn = Database.VEPROMS_SqlConnection)
|
||||||
|
{
|
||||||
|
using (SqlCommand cm = cn.CreateCommand())
|
||||||
|
{
|
||||||
|
cm.CommandType = CommandType.Text;
|
||||||
|
cm.CommandText = "select RofstDatabase.*, RODbID FROM RofstDatabase INNER JOIN (Select FSTID = max(RoFSTID), RODbID from ROFsts GROUP BY RODbID) fsts ON fsts.FSTID = RofstDatabase.RofstID ORDER BY RofstID, RODbID, dbiTitle";
|
||||||
|
|
||||||
|
cm.CommandTimeout = 0;
|
||||||
|
using (SqlDataAdapter da = new SqlDataAdapter(cm))
|
||||||
|
{
|
||||||
|
DataTable dt = new DataTable();
|
||||||
|
da.Fill(dt);
|
||||||
|
return dt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
throw new DbCslaException("Error in GetROsNotUsedInPROMS Report - GetRODBs: retrieving data failed", ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user