From fb7a99653d1b5bae9c071b863599042a94c0cf56 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Thu, 3 Oct 2024 15:11:15 -0400 Subject: [PATCH 01/32] C2020-049-Add-the-ability-for-PROMS-to-remember-the-procedure-tabs-that-were-open-when-you-closed-PROMS-2 --- PROMS/VEPROMS User Interface/PROMSFixes.Sql | 97 ++++++++++ PROMS/VEPROMS User Interface/frmVEPROMS.cs | 43 ++++- .../VEPROMS.CSLA.Library/Extension/ItemExt.cs | 165 ++++++++++++++++++ PROMS/VEPROMS.CSLA.Library/Generated/Item.cs | 85 +++++++++ 4 files changed, 389 insertions(+), 1 deletion(-) diff --git a/PROMS/VEPROMS User Interface/PROMSFixes.Sql b/PROMS/VEPROMS User Interface/PROMSFixes.Sql index 11f23950..38edb970 100644 --- a/PROMS/VEPROMS User Interface/PROMSFixes.Sql +++ b/PROMS/VEPROMS User Interface/PROMSFixes.Sql @@ -23904,6 +23904,103 @@ GO IF (@@Error = 0) PRINT 'Procedure Creation: [PasteItemReplace] Succeeded' ELSE PRINT 'Procedure Creation: [PasteItemReplace] Error on Creation' GO +-- SP: AddDisplayTabState + + +SET QUOTED_IDENTIFIER ON +GO +IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[AddDisplayTabState]') AND OBJECTPROPERTY(id,N'IsProcedure') = 1) + DROP PROCEDURE [AddDisplayTabState]; +GO +-- ============================================= +-- Author: Paul Larsen +-- Create date: 9/18/2024 +-- Description: Save current open tab state in PROMS editor. +-- ============================================= +CREATE PROCEDURE [dbo].[AddDisplayTabState] +( + @ItemID int, + @DisplayTabID varchar(30), + @DisplayTabName varchar(100), + @userID varchar(100), + @order int +) + +AS +BEGIN + -- SET NOCOUNT ON added to prevent extra result sets from + -- interfering with SELECT statements. + SET NOCOUNT ON; + + -- Remove all records + -- DELETE FROM [dbo].[DisplayTabTmp]; + + -- Record current tab information + INSERT INTO [dbo].[DisplayTabTmp] (itemid,DisplayTabID,DisplayTabName,userid,active, taborder) + VALUES (@ItemID,@DisplayTabID,@DisplayTabName,@userID, 1, @order) +END +GO + +-- SP: GetDisplayTabdata +IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[GetDisplayTabdata]') AND OBJECTPROPERTY(id,N'IsProcedure') = 1) + DROP PROCEDURE [GetDisplayTabdata]; +GO +/****** Object: StoredProcedure [dbo].[GetDisplayTabdata] Script Date: 10/3/2024 11:29:44 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +-- ============================================= +-- Author: Paul Larsen +-- Create date: 09/18/2024 +-- Description: retrieve PROMS edit tab saved state. +-- ============================================= +CREATE PROCEDURE [dbo].[GetDisplayTabdata] +( + @UserID varchar(100) +) + +AS +BEGIN + -- SET NOCOUNT ON added to prevent extra result sets from + -- interfering with SELECT statements. + SET NOCOUNT ON; + + SELECT [ItemID] + ,[DisplayTabID] + ,[DisplayTabName] + ,[UpdateDate] + ,[UserID] + ,[taborder] + FROM [dbo].[DisplayTabTmp] + WHERE UserID = @UserID AND Active = 1 + order by taborder +END +GO +-- SP: DeactivateStateDisplayTabTmp +IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[DeactivateStateDisplayTabTmp]') AND OBJECTPROPERTY(id,N'IsProcedure') = 1) + DROP PROCEDURE [DeactivateStateDisplayTabTmp]; +GO +/****** Object: StoredProcedure [dbo].[DeactivateStateDisplayTabTmp] Script Date: 10/3/2024 11:30:53 AM ******/ +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +-- ============================================= +-- Author: Paul Larsen +-- Create date: 10/1/2024 +-- Description: Set PROMES Edit window tabs state inactive. +-- ============================================= +CREATE procedure [dbo].[DeactivateStateDisplayTabTmp] +( + @UserID varchar(100) +) + +AS +UPDATE [dbo].[DisplayTabTmp] +SET Active = 0 +WHERE UserID = @UserID +GO /* ========================================================================================================== End: C2017-031: SQL to allow copy/replace enhanced step diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.cs index e6861d29..5b6fcbe7 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.cs +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.cs @@ -1670,16 +1670,36 @@ namespace VEPROMS return; } - string stk = Volian.Base.Library.vlnStackTrace.StackToString(); + string stk = Volian.Base.Library.vlnStackTrace.StackToString(); if (!stk.Contains("Exception")) { // B2018-091 Allow PROMS to close if only MSWord sections have been opened. // B2019-071 we will now close one or all of the tabs (even step editor ones) + + string DisplayTabID = ""; + int pos; + int TabItemID; + string DisplayTabName = ""; + int cnt = 0; + // Deactivate previous procedure tab state by user + VEPROMS.CSLA.Library.Item.DeactivateStateDisplayTabTmp(MySessionInfo.UserID); + // Save current procedure tab state + foreach (KeyValuePair pgTab in tc._MyDisplayTabItems) + { + cnt++; + DisplayTabID = pgTab.Key; + TabItemID = Int32.Parse(DisplayTabID.Substring(DisplayTabID.IndexOf("Item - ") + 7)); + DisplayTabName = pgTab.Value.ToString(); + //tc.SelectedDisplayTabItem.MyStepTabPanel.ToString() + VEPROMS.CSLA.Library.Item.AddDisplayTabsState(TabItemID, DisplayTabID, DisplayTabName, MySessionInfo.UserID, cnt); + } + int n = tc._MyDisplayTabItems.Count; while (n-- > 0 && tc._MyDisplayTabItems.Count > 0) { + tc.CloseTabItem(tc.SelectedDisplayTabItem); // B2019-071 close just the current tab and continue working @@ -2320,6 +2340,27 @@ namespace VEPROMS CurrentID = txtSearch.Text; } } + + // Add retrieve displaytabs state here. + openDisplaytabstate(); + } + + public void openDisplaytabstate() + { + DataTable DisPlayTabState = VEPROMS.CSLA.Library.Item.GetDisplayTabs(VlnSettings.UserID); + + if (DisPlayTabState.Rows.Count > 0) + { + foreach (DataRow TabState in DisPlayTabState.Rows) + { + int _ItemID = (int)TabState["ItemID"]; + //ItemInfoList _Procedures = ItemInfoList.GetList(_ItemID, (int)E_FromType.Procedure)); + ItemInfo _Procedure = ItemInfo.Get(_ItemID); + //ItemInfo.Get + //ItemInfo.Get + OpenItem(_Procedure); + } + } } void tc_RefreshEnhancedDocument(object sender, ItemSelectedChangedEventArgs args) diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs index eae5674d..57949a02 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs @@ -8004,6 +8004,171 @@ namespace VEPROMS.CSLA.Library MyContent.Config = _ProcedureConfig.ToString(); } #endregion + public class DisplayTabs + { + private int _ItemID; + public int ItemID + { + get { return _ItemID; } + set { _ItemID = value; } + + } + private string _DisplayTabID; + public string DisplayTabID + { + get { return _DisplayTabID; } + set { _DisplayTabID = value; } + } + private string _DisplayTabName; + public string DisplayTabName + { + get { return _DisplayTabName; } + set { _DisplayTabName = value; } + } + + public SafeDataReader Dr { get; } + + public DisplayTabs() + { + + } + + public DisplayTabs(int itemID, String displayTabID, String displayTabName) + { + _ItemID = itemID; + _DisplayTabID = displayTabID; + _DisplayTabName = displayTabName; + } + + public DisplayTabs(SafeDataReader dr) + { + Dr = dr; + } + } + public static DataTable GetDisplayTabs(int itemID) //, string displayTabID, string displayTabName) + { + try + { + DataTable tmp = DataPortal.Fetch(new DisplayTabs(itemID, "", "")); //, displayTabID, displayTabName)); + //ItemInfo.AddList(tmp); + //tmp.AddEvents(); + return tmp; + } + catch (Exception ex) + { + throw new DbCslaException("Error on ItemInfoList.GetChildren", ex); + } + } + private DataTable dt = new DataTable(); + private DataTable DataPortal_Fetch(DisplayTabs criteria) + { + + using (SqlConnection cn = Database.VEPROMS_SqlConnection) + { + using (SqlCommand cm = cn.CreateCommand()) + { + try + { + cm.CommandType = CommandType.StoredProcedure; + cm.CommandText = "GetDisplayTabData"; + cm.CommandTimeout = Database.DefaultTimeout; + SqlDataAdapter da = new SqlDataAdapter(cm); + da.Fill(dt); + cn.Close(); + da.Dispose(); + return dt; + } + catch (Exception ex) + { + //if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemExt.DataPortal_Fetch", ex); + throw new DbCslaException("ItemExt.DataPortal_Fetch", ex); + } + + } + } + + } + //public static void AddDisplayTabsState(int itemID, string displayTabID, string displayTabName) + //{ + // try + // { + // //DisplayTabs tmp = + // DataPortal.Fetch(new DisplayTabs(itemID, displayTabID, displayTabName)); //, displayTabID, displayTabName)); + // //ItemInfo.AddList(tmp); + // //tmp.AddEvents(); + // //return tmp; + // } + // catch (Exception ex) + // { + // throw new DbCslaException("Error on ItemInfoList.GetChildren", ex); + // } + //} + //private DataTable dt = new DataTable(); + //private void DataPortal_Fetch(int itemID, string displayTabID, string displayTabName) + //{ + + // using (SqlConnection cn = Database.VEPROMS_SqlConnection) + // { + // using (SqlCommand cm = cn.CreateCommand()) + // { + // try + // { + // cm.CommandType = CommandType.StoredProcedure; + // cm.CommandText = "AddDisplayTabState"; + // cm.CommandTimeout = Database.DefaultTimeout; + // cm.Parameters.AddWithValue("@ItemID", ItemID); + // cm.Parameters.AddWithValue("@displayTabID", displayTabID); + // cm.Parameters.AddWithValue("@displayTabName", displayTabName); + // cm.ExecuteNonQuery(); + // //SqlDataAdapter da = new SqlDataAdapter(cm); + // //da.Fill(dt); + // //cn.Close(); + // //da.Dispose(); + // //return dt; // fix + // } + // catch (Exception ex) + // { + // //if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemExt.DataPortal_Fetch", ex); + // throw new DbCslaException("ItemExt.DataPortal_Fetch", ex); + // } + + // } + // } + + //} + public static void AddDisplayTabsState(int itemID, string displayTabID, string displayTabName) + //private void DataPortal_Fetch(int itemID, string displayTabID, string displayTabName) + { + + using (SqlConnection cn = Database.VEPROMS_SqlConnection) + { + using (SqlCommand cm = cn.CreateCommand()) + { + try + { + cm.CommandType = CommandType.StoredProcedure; + cm.CommandText = "AddDisplayTabState"; + cm.CommandTimeout = Database.DefaultTimeout; + cm.Parameters.AddWithValue("@ItemID", itemID); + cm.Parameters.AddWithValue("@displayTabID", displayTabID); + cm.Parameters.AddWithValue("@displayTabName", displayTabName); + cm.ExecuteNonQuery(); + //SqlDataAdapter da = new SqlDataAdapter(cm); + //da.Fill(dt); + //cn.Close(); + //da.Dispose(); + //return dt; // fix + } + catch (Exception ex) + { + //if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemExt.AddDisplayTabsState", ex); + throw new DbCslaException("ItemExt.AddDisplayTabsState", ex); + } + + } + } + + } } #endregion #region SectionInfo diff --git a/PROMS/VEPROMS.CSLA.Library/Generated/Item.cs b/PROMS/VEPROMS.CSLA.Library/Generated/Item.cs index 57a55d22..94168c79 100644 --- a/PROMS/VEPROMS.CSLA.Library/Generated/Item.cs +++ b/PROMS/VEPROMS.CSLA.Library/Generated/Item.cs @@ -1132,6 +1132,91 @@ namespace VEPROMS.CSLA.Library throw new DbCslaException("Item.Add", ex); } } + public static void DeactivateStateDisplayTabTmp(string UserID) + { + using (SqlConnection cn = Database.VEPROMS_SqlConnection) + { + using (SqlCommand cm = cn.CreateCommand()) + { + try + { + cm.CommandType = CommandType.StoredProcedure; + cm.CommandText = "DeactivateStateDisplayTabTmp"; + cm.CommandTimeout = Database.DefaultTimeout; + cm.Parameters.AddWithValue("@UserID", UserID); + cm.ExecuteNonQuery(); + } + catch (Exception ex) + { + //if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemExt.DeactivateStateDisplayTabTmp", ex); + throw new DbCslaException("ItemExt.DeactivateStateDisplayTabTmp", ex); + } + + } + } + } + public static void AddDisplayTabsState(int itemID, string displayTabID, string displayTabName, string UserID, int order) + //private void DataPortal_Fetch(int itemID, string displayTabID, string displayTabName) + { + using (SqlConnection cn = Database.VEPROMS_SqlConnection) + { + using (SqlCommand cm = cn.CreateCommand()) + { + try + { + cm.CommandType = CommandType.StoredProcedure; + cm.CommandText = "AddDisplayTabState"; + cm.CommandTimeout = Database.DefaultTimeout; + cm.Parameters.AddWithValue("@ItemID", itemID); + cm.Parameters.AddWithValue("@displayTabID", displayTabID); + cm.Parameters.AddWithValue("@displayTabName", displayTabName); + cm.Parameters.AddWithValue("@UserID", UserID); + cm.Parameters.AddWithValue("@order", order); + cm.ExecuteNonQuery(); + } + catch (Exception ex) + { + //if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemExt.AddDisplayTabsState", ex); + throw new DbCslaException("ItemExt.AddDisplayTabsState", ex); + } + } + } + } + public static DataTable GetDisplayTabs(string UserID) //, string displayTabID, string displayTabName) + //public static void DeactivateStateDisplayTabTmp(string UserID) + { + using (SqlConnection cn = Database.VEPROMS_SqlConnection) + { + using (SqlCommand cm = cn.CreateCommand()) + { + try + { + cm.CommandType = CommandType.StoredProcedure; + cm.CommandText = "GetDisplayTabdata"; + cm.CommandTimeout = Database.DefaultTimeout; + cm.Parameters.AddWithValue("@UserID", UserID); + //cm.ExecuteNonQuery(); + SqlDataAdapter da = new SqlDataAdapter(cm); + //da.Fill(dt); + //cn.Close(); + //da.Dispose(); + //return dt; // fix + + SqlDataReader reader = cm.ExecuteReader(); + DataTable dt = new DataTable(); + dt.Load(reader); + return dt; + + } + catch (Exception ex) + { + //if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemExt.DeactivateStateDisplayTabTmp", ex); + throw new DbCslaException("ItemExt.DeactivateStateDisplayTabTmp", ex); + } + + } + } + } [Transactional(TransactionalTypes.TransactionScope)] protected override void DataPortal_Update() { From dd83491169de98b2c6b4c00835f585aabb039328 Mon Sep 17 00:00:00 2001 From: mschill Date: Fri, 4 Oct 2024 12:46:23 -0400 Subject: [PATCH 02/32] B2024-076 Correct Linking / Numbering when utilizing Paste Replace with Enhanced Steps over unlinked steps --- PROMS/VEPROMS User Interface/PROMSFixes.Sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/VEPROMS User Interface/PROMSFixes.Sql b/PROMS/VEPROMS User Interface/PROMSFixes.Sql index 38edb970..6cf3d748 100644 --- a/PROMS/VEPROMS User Interface/PROMSFixes.Sql +++ b/PROMS/VEPROMS User Interface/PROMSFixes.Sql @@ -23798,7 +23798,7 @@ BEGIN TRY -- Try Block --then remove the link from the copy --if original item was not linked, update new items to not be linked DECLARE @xconfig XML = (Select cast(config as xml) xconfig from Contents where ContentID = @ContentID); - IF @xconfig.exist('//Enhanced[1]') = 0 + IF ISNULL(@xconfig.exist('//Enhanced[1]'),0) = 0 BEGIN UPDATE Contents SET Config = dbo.vefn_RemoveEnhanced(Contents.Config) Where ContentID in (Select ContentID FROM vefn_ChildItems(@NewItemID)) From 3fbd974fa9a0fa9e64ef394a3efa26603d310b51 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Fri, 4 Oct 2024 14:38:59 -0400 Subject: [PATCH 03/32] C2020-049-Add-the-ability-for-PROMS-to-remember-the-procedure-tabs-that-were-open-when-you-closed-PROMS-4 --- PROMS/VEPROMS User Interface/PROMSFixes.Sql | 38 +++++++++++++++++++-- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/PROMS/VEPROMS User Interface/PROMSFixes.Sql b/PROMS/VEPROMS User Interface/PROMSFixes.Sql index 6cf3d748..ec22fbb3 100644 --- a/PROMS/VEPROMS User Interface/PROMSFixes.Sql +++ b/PROMS/VEPROMS User Interface/PROMSFixes.Sql @@ -23798,7 +23798,7 @@ BEGIN TRY -- Try Block --then remove the link from the copy --if original item was not linked, update new items to not be linked DECLARE @xconfig XML = (Select cast(config as xml) xconfig from Contents where ContentID = @ContentID); - IF ISNULL(@xconfig.exist('//Enhanced[1]'),0) = 0 + IF @xconfig.exist('//Enhanced[1]') = 0 BEGIN UPDATE Contents SET Config = dbo.vefn_RemoveEnhanced(Contents.Config) Where ContentID in (Select ContentID FROM vefn_ChildItems(@NewItemID)) @@ -24001,6 +24001,38 @@ UPDATE [dbo].[DisplayTabTmp] SET Active = 0 WHERE UserID = @UserID GO +-- Table: DisplayTabTmp + -- If DisplayTabTmp table already exists then don't drop and recreate it + IF Not Exists(SELECT * FROM sys.objects Where name = 'DisplayTabTmp' AND type in (N'U')) + Begin + SET ANSI_NULLS ON + SET QUOTED_IDENTIFIER ON + -- ============================================= + -- Author: Paul Larsen + -- Create date: 9/30/2024 + -- Description: Table to hold tab state in PROMS editor. + -- ============================================= + /****** Object: Table [dbo].[DisplayTabTmp] Script Date: 10/3/2024 11:22:00 AM ******/ + + CREATE TABLE [dbo].[DisplayTabTmp]( + [ID] [int] IDENTITY(1,1) NOT NULL, + [ItemID] [int] NOT NULL, + [DisplayTabID] [nvarchar](100) NOT NULL, + [DisplayTabName] [nchar](100) NOT NULL, + [UpdateDate] [datetime] NOT NULL, + [UserID] [nchar](100) NOT NULL, + [Active] [bit] NOT NULL, + [taborder] [int] NOT NULL + ) ON [PRIMARY] + + ALTER TABLE [dbo].[DisplayTabTmp] ADD CONSTRAINT [DF_DisplayTabTmp_UpdateDate] DEFAULT (getdate()) FOR [UpdateDate] + + ALTER TABLE [dbo].[DisplayTabTmp] ADD CONSTRAINT [DF_DisplayTabTmp_Active] DEFAULT ((1)) FOR [Active] + + ALTER TABLE [dbo].[DisplayTabTmp] ADD DEFAULT ((0)) FOR [taborder] + + End +GO /* ========================================================================================================== End: C2017-031: SQL to allow copy/replace enhanced step @@ -24040,8 +24072,8 @@ BEGIN TRY -- Try Block DECLARE @RevDate varchar(255) DECLARE @RevDescription varchar(255) - set @RevDate = '09/26/2024 11:24' - set @RevDescription = 'SQL to allow copy/replace enhanced step.' + set @RevDate = '10/03/2024 11:24' + set @RevDescription = 'C2020-049 Add the ability for PROMS to remember the procedure tabs that were open when you closed PROMS' Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription PRINT 'SQL Code Revision ' + @RevDate + ' - ' + @RevDescription From 5b4e1cd69498b2a46941b90499f892adbd211c01 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Fri, 4 Oct 2024 14:55:04 -0400 Subject: [PATCH 04/32] C2020-049-Add-the-ability-for-PROMS-to-remember-the-procedure-tabs-that-were-open-when-you-closed-PROMS-4 --- PROMS/VEPROMS User Interface/PROMSFixes.Sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/VEPROMS User Interface/PROMSFixes.Sql b/PROMS/VEPROMS User Interface/PROMSFixes.Sql index ec22fbb3..6224b342 100644 --- a/PROMS/VEPROMS User Interface/PROMSFixes.Sql +++ b/PROMS/VEPROMS User Interface/PROMSFixes.Sql @@ -24073,7 +24073,7 @@ BEGIN TRY -- Try Block DECLARE @RevDescription varchar(255) set @RevDate = '10/03/2024 11:24' - set @RevDescription = 'C2020-049 Add the ability for PROMS to remember the procedure tabs that were open when you closed PROMS' + set @RevDescription = 'Add the ability for PROMS to remember the procedure tabs that were open when you closed PROMS' Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription PRINT 'SQL Code Revision ' + @RevDate + ' - ' + @RevDescription From dc77984c10378f6fc435f78fd8d5d56a620466c7 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Mon, 7 Oct 2024 11:40:26 -0400 Subject: [PATCH 05/32] C2020-049-Add-the-ability-for-PROMS-to-remember-the-procedure-tabs-that-were-open-when-you-closed-PROMS-4 --- PROMS/VEPROMS User Interface/PROMSFixes.Sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/VEPROMS User Interface/PROMSFixes.Sql b/PROMS/VEPROMS User Interface/PROMSFixes.Sql index 6224b342..2a71f094 100644 --- a/PROMS/VEPROMS User Interface/PROMSFixes.Sql +++ b/PROMS/VEPROMS User Interface/PROMSFixes.Sql @@ -23798,7 +23798,7 @@ BEGIN TRY -- Try Block --then remove the link from the copy --if original item was not linked, update new items to not be linked DECLARE @xconfig XML = (Select cast(config as xml) xconfig from Contents where ContentID = @ContentID); - IF @xconfig.exist('//Enhanced[1]') = 0 + IF ISNULL(@xconfig.exist('//Enhanced[1]'),0) = 0 BEGIN UPDATE Contents SET Config = dbo.vefn_RemoveEnhanced(Contents.Config) Where ContentID in (Select ContentID FROM vefn_ChildItems(@NewItemID)) From 48da58b68190da04c663cf7b406cbb2b19f83607 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Tue, 8 Oct 2024 08:54:32 -0400 Subject: [PATCH 06/32] C2020-049-Add-the-ability-for-PROMS-to-remember-the-procedure-tabs-that-were-open-when-you-closed-PROMS-5 --- PROMS/VEPROMS User Interface/frmVEPROMS.cs | 34 ++++++++++++---------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.cs index 5b6fcbe7..72faa7ed 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.cs +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.cs @@ -1676,23 +1676,25 @@ namespace VEPROMS { // B2018-091 Allow PROMS to close if only MSWord sections have been opened. // B2019-071 we will now close one or all of the tabs (even step editor ones) - - string DisplayTabID = ""; - int pos; - int TabItemID; - string DisplayTabName = ""; - int cnt = 0; - // Deactivate previous procedure tab state by user - VEPROMS.CSLA.Library.Item.DeactivateStateDisplayTabTmp(MySessionInfo.UserID); - // Save current procedure tab state - foreach (KeyValuePair pgTab in tc._MyDisplayTabItems) + if (_WeAreExitingPROMS) { - cnt++; - DisplayTabID = pgTab.Key; - TabItemID = Int32.Parse(DisplayTabID.Substring(DisplayTabID.IndexOf("Item - ") + 7)); - DisplayTabName = pgTab.Value.ToString(); - //tc.SelectedDisplayTabItem.MyStepTabPanel.ToString() - VEPROMS.CSLA.Library.Item.AddDisplayTabsState(TabItemID, DisplayTabID, DisplayTabName, MySessionInfo.UserID, cnt); + string DisplayTabID = ""; + int pos; + int TabItemID; + string DisplayTabName = ""; + int cnt = 0; + // Deactivate previous procedure tab state by user + VEPROMS.CSLA.Library.Item.DeactivateStateDisplayTabTmp(MySessionInfo.UserID); + // Save current procedure tab state + foreach (KeyValuePair pgTab in tc._MyDisplayTabItems) + { + cnt++; + DisplayTabID = pgTab.Key; + TabItemID = Int32.Parse(DisplayTabID.Substring(DisplayTabID.IndexOf("Item - ") + 7)); + DisplayTabName = pgTab.Value.ToString(); + //tc.SelectedDisplayTabItem.MyStepTabPanel.ToString() + VEPROMS.CSLA.Library.Item.AddDisplayTabsState(TabItemID, DisplayTabID, DisplayTabName, MySessionInfo.UserID, cnt); + } } int n = tc._MyDisplayTabItems.Count; From 1b6eeaf4ad44441cf1dadcc934d2e95febc539be Mon Sep 17 00:00:00 2001 From: mschill Date: Tue, 8 Oct 2024 15:02:47 -0400 Subject: [PATCH 07/32] C2024-023 Autocomplete on Group Definition Accessory Page Access Values. --- .../Exe/RefObj/ROEditor/GroupDefFrm.cs | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs index 4dea6f10..ff0828fb 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs @@ -100,6 +100,7 @@ using System.Text; using RODBInterface; using ROFields; using VlnStatus; +using System.Linq; namespace ROEditor { @@ -245,6 +246,37 @@ namespace ROEditor return CvtFldToUserFld(origGroup); } } + + //CSM C2024-023 + //Part of 2024 PROMS Upgrades + //When the Overall Form is activated + //if there are any items that are Fields that are in use + //add them as auto-complete options to the + //Accessory Page Access - Value Textbox + //Typing < will bring up the auto-complete options + protected void tbValue_AddAutoComplete(object sender, EventArgs e) + { + string dummy = ""; // need for RODB_GetFIeldsInUse call, won't be used. + ArrayList AvailList, InUseList; + //first see if it is a valid 'InUse' Field. + AvailList = myrodb.RODB_GetFields(elem, (uint)RecordType.Schema); + InUseList = myrodb.RODB_GetFieldsInUse(elem, AvailList, "FieldsInUse", ref dummy, false); + + //if any ROField items are in use, + //use LINQ to get a string array of the FieldNames + if (InUseList.Count > 0) + { + string[] InUseListFieldNames = InUseList.OfType().Select(x => $"<{x.GetFieldname}>").ToArray(); + AutoCompleteStringCollection allowedTypes = new AutoCompleteStringCollection(); + allowedTypes.AddRange(InUseListFieldNames); + tbValue.AutoCompleteCustomSource = allowedTypes; + tbValue.AutoCompleteMode = AutoCompleteMode.Suggest; + tbValue.AutoCompleteSource = AutoCompleteSource.CustomSource; + + } + + } + private void FillInData() { this.tbGroup.Text = DetermineGroupName(); @@ -432,6 +464,7 @@ namespace ROEditor this.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); this.Name = "GroupDefFrm"; this.Text = "Group Definition"; + this.Activated += new EventHandler(tbValue_AddAutoComplete); this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); From 591fc03ca291316fe398ed1cad7638d6d1fe2c3c Mon Sep 17 00:00:00 2001 From: mschill Date: Wed, 9 Oct 2024 13:12:29 -0400 Subject: [PATCH 08/32] C2024-024 Simple Selection of Fields to add to Return Values and Menu Values --- .../Exe/RefObj/ROEditor/AssemblyInfo.cs | 6 +- .../Exe/RefObj/ROEditor/RODefFrm.cs | 152 +++++++++++++++--- 2 files changed, 130 insertions(+), 28 deletions(-) diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/AssemblyInfo.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/AssemblyInfo.cs index 40c79565..893433cd 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/AssemblyInfo.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/AssemblyInfo.cs @@ -23,8 +23,8 @@ using System.Runtime.CompilerServices; // Build YYMM (two digit year, two digit month) // Revision DHH (day - no leading zero, two digit hour - military time // -[assembly: AssemblyVersion("2.3.2404.1611")] -[assembly: AssemblyFileVersion("2.3.2404.1611")] +[assembly: AssemblyVersion("2.3.2410.907")] +[assembly: AssemblyFileVersion("2.3.2410.907")] // // In order to sign your assembly you must specify a key to use. Refer to the @@ -91,6 +91,8 @@ using System.Runtime.CompilerServices; + + diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs index f03ecda0..ebbc23eb 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs @@ -151,7 +151,7 @@ namespace ROEditor private string origMenuItem; StringBuilder parseerror; private int hi, lo; - private Label lb_chkApplc; + private Label lb_chkApplc; private int dbtype; // C2021-026 returns true is Parent/Child info was passed into the RO Editor public bool PCApplicabilityEnabled @@ -188,33 +188,33 @@ namespace ROEditor lboxInUse.Visible = true; lb_chkApplc.Visible = false; } - if (editlevel==(uint)RecordType.GroupSchema)this.Text = "Subgroup Definition"; + if (editlevel == (uint)RecordType.GroupSchema) this.Text = "Subgroup Definition"; FillInData(grptxt); } /// /// Clean up any resources being used. /// - protected override void Dispose( bool disposing ) + protected override void Dispose(bool disposing) { - if( disposing ) + if (disposing) { - if(components != null) + if (components != null) { components.Dispose(); } } - base.Dispose( disposing ); + base.Dispose(disposing); } - + private void FillInAvailable() { ROField rof; - + // put the items in the AvailList box. - for (int i=0; i< AvailList.Count; i++) + for (int i = 0; i < AvailList.Count; i++) { - rof = (ROField) AvailList[i]; + rof = (ROField)AvailList[i]; if (rof.GetFieldname != null) // DO YET: Why null? this.lboxAvail.Items.Add(rof.GetFieldname); } @@ -277,7 +277,7 @@ namespace ROEditor _initializing = false; } - + private void DoValueTextBoxes() { string menuitm, retval; @@ -297,7 +297,7 @@ namespace ROEditor else parent = null; } - if (menuitm !="") + if (menuitm != "") this.tbMenuVal.Text = CvtFldToUserFld(menuitm); else this.tbMenuVal.Text = ""; @@ -310,21 +310,21 @@ namespace ROEditor this.lblRetVal.Visible = true; VlnXmlElement parent; parent = (VlnXmlElement) elem.ParentNode; - while (parent != null && (menuitm == "" || retval=="")) + while (parent != null && (menuitm == "" || retval == "")) { // walk up tree to get parent and check for data there if (menuitm == "") menuitm = parent.GetAttribute("MenuItem"); if (retval == "") retval = parent.GetAttribute("RetVal"); if (parent.Name != "RO_Root") - parent = (VlnXmlElement) parent.ParentNode; + parent = (VlnXmlElement)parent.ParentNode; else parent = null; } - if (menuitm!="") + if (menuitm != "") this.tbMenuVal.Text = CvtFldToUserFld(menuitm); else this.tbMenuVal.Text = ""; - if (retval!="") + if (retval != "") this.tbRetVal.Text = CvtFldToUserFld(retval); else this.tbRetVal.Text = ""; @@ -332,7 +332,7 @@ namespace ROEditor } private void FillInData(string grptxt) - { + { this.lblGroupText.Text = grptxt; DoValueTextBoxes(); SetUpListBoxes(); @@ -344,24 +344,27 @@ namespace ROEditor lboxAvail.GotFocus += new EventHandler(this.lboxAvail_GotFocus); + lboxInUse.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lboxInUse_MouseUp); + lboxInUseCB.MouseUp += new System.Windows.Forms.MouseEventHandler(this.lboxInUseCB_MouseUp); + // save copies of local data, so if there is a change, we know we must save them. - origRetVal=this.tbRetVal.Text; - origMenuItem=this.tbMenuVal.Text; - + origRetVal = this.tbRetVal.Text; + origMenuItem = this.tbMenuVal.Text; + // if this is a database level definition & it's a user defined database, // the okay button is disabled until a field is used. - if (elem.ParentNode.Name == "RO_Root" && dbtype==3) + if (elem.ParentNode.Name == "RO_Root" && dbtype == 3) { string attr; - if (editlevel==(uint)RecordType.Schema) + if (editlevel == (uint)RecordType.Schema) attr = elem.GetAttribute("FieldsInUse"); else attr = elem.GetAttribute("GroupFieldsInUse"); - if (attr==null || attr=="") btnOK.Enabled=false; + if (attr == null || attr == "") btnOK.Enabled = false; } - } + } - protected void lboxInUse_GotFocus (object sender, EventArgs e) + protected void lboxInUse_GotFocus(object sender, EventArgs e) { lboxAvail.ClearSelected(); this.btnRemove.Enabled = true; @@ -375,7 +378,7 @@ namespace ROEditor this.btnAdd.Enabled = false; this.btnEdit.Enabled = true; } - protected void lboxAvail_GotFocus (object sender, EventArgs e) + protected void lboxAvail_GotFocus(object sender, EventArgs e) { if (PCApplicabilityEnabled) lboxInUseCB.ClearSelected(); @@ -385,6 +388,103 @@ namespace ROEditor this.btnRemove.Enabled = false; this.btnEdit.Enabled = true; } + + //CSM C2024-024 + //Simple Selection of Fields to add to Return Values and Menu Values. + //Part of 2024 PROMS Upgrades + //Add Context Menu for In Use Listbox + //Will allow user to right click Selected Items + //and add then to the Return Value / Menu Value Text Boxes + //without re-typing them + protected void lboxInUse_MouseUp(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Right && lboxInUse.SelectedItems.Count > 0) + { + ContextMenuStrip cn = new ContextMenuStrip(); + if (tbRetVal.Visible) + { + var AddToReturnItem = new ToolStripMenuItem("Add to Return Value"); + AddToReturnItem.Click += new EventHandler(lboxInUse_Click); + AddToReturnItem.Name = "Add to Return Value"; + cn.Items.Add(AddToReturnItem); + } + var AddToMenuItem = new ToolStripMenuItem("Add to Menu Value"); + AddToMenuItem.Click += new EventHandler(lboxInUse_Click); + AddToMenuItem.Name = "Add to Menu Value"; + cn.Items.Add(AddToMenuItem); + this.lboxInUse.ContextMenuStrip = cn; + cn.Show(Control.MousePosition.X, Control.MousePosition.Y); + } + } + private void lboxInUse_Click(object sender, EventArgs e) + { + switch (((ToolStripMenuItem)sender).Name) + { + case "Add to Return Value": + if (tbRetVal.Text == "") + tbRetVal.Text += $"<{lboxInUse.SelectedItem}>"; + else + tbRetVal.Text += $" - <{lboxInUse.SelectedItem}>"; + break; + case "Add to Menu Value": + if (tbMenuVal.Text == "") + tbMenuVal.Text += $"<{lboxInUse.SelectedItem}>"; + else + tbMenuVal.Text += $" - <{lboxInUse.SelectedItem}>"; + break; + + } + } + + //CSM C2024-024 + //Simple Selection of Fields to add to Return Values and Menu Values. + //Part of 2024 PROMS Upgrades + //Add Context Menu for In Use ComboBox + //(Replaces In Use Listbox when Applicability + //to allow for selection of items per Unit) + //Will allow user to right click Selected Items + //and add then to the Return Value / Menu Value Text Boxes + //without re-typing them + protected void lboxInUseCB_MouseUp(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Right && lboxInUseCB.SelectedItems.Count > 0) + { + ContextMenuStrip cn = new ContextMenuStrip(); + if (tbRetVal.Visible) + { + var AddToReturnItem = new ToolStripMenuItem("Add to Return Value"); + AddToReturnItem.Click += new EventHandler(lboxInUseCB_Click); + AddToReturnItem.Name = "Add to Return Value"; + cn.Items.Add(AddToReturnItem); + } + var AddToMenuItem = new ToolStripMenuItem("Add to Menu Value"); + AddToMenuItem.Click += new EventHandler(lboxInUseCB_Click); + AddToMenuItem.Name = "Add to Menu Value"; + cn.Items.Add(AddToMenuItem); + this.lboxInUseCB.ContextMenuStrip = cn; + cn.Show(Control.MousePosition.X, Control.MousePosition.Y); + } + } + private void lboxInUseCB_Click(object sender, EventArgs e) + { + switch (((ToolStripMenuItem)sender).Name) + { + case "Add to Return Value": + if (tbRetVal.Text == "") + tbRetVal.Text += $"<{lboxInUseCB.SelectedItem}>"; + else + tbRetVal.Text += $" - <{lboxInUseCB.SelectedItem}>"; + break; + case "Add to Menu Value": + if (tbMenuVal.Text == "") + tbMenuVal.Text += $"<{lboxInUseCB.SelectedItem}>"; + else + tbMenuVal.Text += $" - <{lboxInUseCB.SelectedItem}>"; + break; + + } + } + private void btnRemove_Click(object sender, System.EventArgs e) { //get item in lboxInUse (in use list) and remove it from there From ca4dc8d330ce733592e8816e1454275c0f7f3a60 Mon Sep 17 00:00:00 2001 From: John Jenko Date: Wed, 9 Oct 2024 16:45:38 -0400 Subject: [PATCH 09/32] F2024-074 For Farley, Include the Cover Page in the total page count of the procedures --- PROMS/Formats/fmtall/FNPDEVall.xml | Bin 73928 -> 73928 bytes PROMS/Formats/fmtall/FNPEBKall.xml | Bin 60352 -> 60352 bytes PROMS/Formats/fmtall/FNPSAM1all.xml | Bin 110912 -> 110854 bytes PROMS/Formats/fmtall/FNPall.xml | Bin 144134 -> 144076 bytes 4 files changed, 0 insertions(+), 0 deletions(-) diff --git a/PROMS/Formats/fmtall/FNPDEVall.xml b/PROMS/Formats/fmtall/FNPDEVall.xml index 3c2ab517e6160848262da05d27e4a6eab46c37ae..fef4639505648fb55239ab6e17c7fdb97195660e 100644 GIT binary patch delta 21 dcmX?ckmbZdmWC~ib66(J{a4w3fQ6Am1^{d52xI^N delta 23 fcmX?ckmbZdmWC~ib6B?T5n)`%xZR75u}%sAdz=Wz diff --git a/PROMS/Formats/fmtall/FNPEBKall.xml b/PROMS/Formats/fmtall/FNPEBKall.xml index c175928071f8d67010c4825ee784db103f956c9c..b2e360596e90867a2c4479a5814e771eb0e32cd1 100644 GIT binary patch delta 26 kcmV+#0OkL{*8{-U1F-bhvgob>lk}|;lfdb^vu@f_5!uiWlK=n! delta 26 kcmV+#0OkL{*8{-U1F-bhvf!=(lk}|;lfdb^vu@f_5!p}=ivR!s diff --git a/PROMS/Formats/fmtall/FNPSAM1all.xml b/PROMS/Formats/fmtall/FNPSAM1all.xml index 4485997d75ed0b96a1a6b4ecf760e0e3b71a3f0b..fb0807c2e436c8812e66649f88ed86ca3b2f505a 100644 GIT binary patch delta 38 ucmX@`h^_4rTf-K{KONg9F(xo>kLhA$Vw&Etg3)XG9Z5!w?OeT#W-0(gL=J=i delta 49 zcmV-10M7r0;s(It27t5y{D=WCmjP)3Bex)l0X_qlfRzC@lcduSmym%0K9^9R0X(xB~C diff --git a/PROMS/Formats/fmtall/FNPall.xml b/PROMS/Formats/fmtall/FNPall.xml index 364632954bef2b74874011b7aad12aed44f629fb..49f8608c7fb797e6a2b978d284b47ce9e793a2da 100644 GIT binary patch delta 38 wcmV+>0NMYB<_OH?2!ON!%Hy|S3<9nJw|M0N#sQa*{Q*>yzUmaW;O7A*OKzGHcmMzZ delta 80 zcmX@}l%wq#N5dAzQ;(mI5Xrkl!95F eKr)0Oks*n}pCJt_o;Q8tMaIbO6P`2Lcmn{nxElKa From a550ef1b50f5485c96deee28d42cbc54c24355e7 Mon Sep 17 00:00:00 2001 From: mschill Date: Thu, 10 Oct 2024 08:38:35 -0400 Subject: [PATCH 10/32] B2024-078 Bad Transition preventing editing of a substep. Can enter changed text, but then when move to another textbox, original text returns. --- .../Extension/DisplayText.cs | 24 ++++++++++++++----- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs b/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs index e43bafcf..67c0602f 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/DisplayText.cs @@ -1165,13 +1165,17 @@ namespace VEPROMS.CSLA.Library { int sp = odte.Link.IndexOf(" ") + 1; // get past tran type string srecid = odte.Link.Substring(sp, odte.Link.IndexOf(" ", sp) - sp); - recid = System.Convert.ToInt32(srecid); - foreach (ContentTransition ct in itm.MyContent.ContentTransitions) + + //CSM B2024-078 - when a bad transition link / does not contain a number, simply return the text as-is + if (int.TryParse(srecid, out recid)) { - if (ct.TransitionID == recid) + foreach (ContentTransition ct in itm.MyContent.ContentTransitions) { - itm.MyContent.ContentTransitions.Remove(ct); - break; + if (ct.TransitionID == recid) + { + itm.MyContent.ContentTransitions.Remove(ct); + break; + } } } } @@ -1656,7 +1660,15 @@ namespace VEPROMS.CSLA.Library private string FixTransition(string link, string text) { if (link.IndexOf("") != -1) return text; - int transitionID = Convert.ToInt32(link.Split(" ".ToCharArray())[1]); + + //CSM B2024-078 - when a bad transition link / does not contain a number, simply return the text as-is + int transitionID; + string[] splt_link = link.Split(' '); + if (splt_link.Length < 2 || !int.TryParse(splt_link[1], out transitionID)) + { + return text; + } + // Find the transition if (_MyItemInfo.MyContent.ContentTransitionCount <= 0) { From 9b71ce0feeab5d6afc28c673e7c5278941c7b681 Mon Sep 17 00:00:00 2001 From: mschill Date: Thu, 10 Oct 2024 15:51:11 -0400 Subject: [PATCH 11/32] GIT_ATTRIBUTE_FILE - adjusting GIT settings so should be able to see diff of xml files in GIT (and not just Visual Studio --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..76c3d5f8 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# ---> VisualStudio +## Show diffs for xml files in GIT +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitattributes + +*.xml diff \ No newline at end of file From a38c0dbe3333048d62fc011a9ca60b2c2e2ca42b Mon Sep 17 00:00:00 2001 From: John Jenko Date: Mon, 14 Oct 2024 14:06:17 -0400 Subject: [PATCH 12/32] F2024-075 (Farley) Action verbs should be bolded no matter if title case or lower case - all formats --- PROMS/Formats/fmtall/FNPCASall.xml | Bin 37494 -> 67772 bytes PROMS/Formats/fmtall/FNPDEVall.xml | Bin 73928 -> 104206 bytes PROMS/Formats/fmtall/FNPEBKall.xml | Bin 60352 -> 90630 bytes PROMS/Formats/fmtall/FNPSAM1all.xml | Bin 110854 -> 139936 bytes PROMS/Formats/fmtall/FNP_00all.xml | Bin 53194 -> 82276 bytes PROMS/Formats/fmtall/FNP_01all.xml | Bin 50560 -> 79642 bytes PROMS/Formats/fmtall/FNPall.xml | Bin 144076 -> 172230 bytes PROMS/Formats/fmtall/fnpnmpall.xml | Bin 79626 -> 108708 bytes 8 files changed, 0 insertions(+), 0 deletions(-) diff --git a/PROMS/Formats/fmtall/FNPCASall.xml b/PROMS/Formats/fmtall/FNPCASall.xml index 73adc8ee2a6d405dbd175ee217aa10da72423ad0..f415cb11f9e436f3f1c64e3cd6e04e2de6a76c31 100644 GIT binary patch delta 2662 zcmai0U2N1<7Qd&{VP-mQDIXRp2!$5gVRkwlhFV%!v9)}(V1Z(-W-0aG&a{rsblRB~ zH%r)EeK8u1(GwFBV+el6k3{5Z#JCB|gUF;dL&cUQ#Ki_(A67(sa9tj%zjJ3=KGl~y z=XcKUo_p>&=br!k_)5+{p2!>sC|%z zRTNfmSi4s6_p9II=bf9m^pEfHldi2?y5Nvwm-@46P}TfMp2wb%UeEK1h5zafacTZb zwpP^y&&&9rYnHtMCpGa$u3Lm*+osy4Ek@4hTX;`?3qP87tNV&rIOBCS&x#jvwJV?h zQ!=0b?#ctNO`mZ8NM!NR{D9q3J!*)bTA9|z3UbJ0sgQaQw@7lJtl|n}m8JN2;S@Ac z6;XYvA91X3WD#F%O!2YV8EaI<)x%;n+zg_^ls;DElrujr3X-M&UvySLdX50w+>_+$ zR$;h}WE|TK;)a$Ho|rcUo4Dyw4;i6N2Aag*#! zz^^s4a~e_MC;WNwl&eQQ0QEtsKv~a z;S&p;`rjovVmwt61k-)<83B_w2i(H!S4rs$mK=V+*r~r;WVqif67HhKhI?^wpdiB? zLdbDpFHh;8ZgG+=q{964ssM$wcgZ(IA*Q9ZW}TYh z5Y>Q5L=tsHW#DSlvPp5ZXn765j^(EXc*^|t5K55XbZ}I!EYB0Aw>$_&S9zKoA>0DD z&U&y`oFWRd|JER{TRNfFROFC7EO+I>4sTXE&@rm(E8!>1Yb%2k*73@70ycPR0QPz& z$sJaEP@f*SHuZ!0v6bkJFn4-o!!uqS+zUn&DUp_&mQf*nzi$>%FI&EVOVslAhIoJb z2oLyk^@CL~_HkcT5bJ*bxQ0>`gMJ_N>HU5j65-+MAVu^W)rcy>e+$$AydOYjBK*`U zu^e4>h8$>0RB(WOWnQRKK_n}}FRl&%q*sq;>_Z6OU*<7fk;jn1*KW%tR|H#8&dlv# zHpukno3&FE1Hb1{ThioA6 z-fExueWyCDC)VeXJFdFrbUDS;AdAiW{MQ{n*?LtkPp+>pzwl&_qaS;PnU&_;k>V2# zKk%39EBS}U1*j8T(R}Vo%AuBgf|gnW#y08B4sm=0hPh#f zhbx;4F_4GliNl?qzok(41zYN{Zrbv-v0cZ@(|_1HiwZEgWCG!{5r+qiT}tSVt*6N@ zhKLzH32ohld?Yx~>W9^8JxLB3Wq6UCF7nLC@$G57W;-6D7)|!F(uJlpSGVT!?K>_R zauPEIC(Xz*nqb%K+KT0vy0*1gAK!VF>)Z0O30-TFIk@Ab-o4W)QHRkJ!|14fRmy`^ z9>n$d&QoMdWMam_Xm%dlKBBwZG5Hg0wFkj@t{r0|$q(J*r=))29+W)Eu?_(*cHl`S zIeu>qz^nIS*d}@3eLjG&AmluKr&%$|^G&n)5t?I}*|y5tZX z$?PP|hh1OTx8WPUkss--;hcs~Ioer7+jw7R9rV(;@))9>#dOp3{VrEqwxO?QUt?iv z7`*{I`wD)=f@2U)tg{a5>z!X;7nBo;za}h%>eNr{cG64$pqRV-N>Eqvem9&e*fUQU z!F{m%zi8lA$(Q++tRrWT`$dP`$@f3nIrrsPx@g`tsX=_LlCm4>;pql?Gi2sm=SNOK zG~88-b)@Uu4PtWIB_CHu<w^|P?Zf=8 q<)>jiX{E`9zfv+cRi7k5l-*^-r3J6i9)7pSi}gsLLg$7ORlfiRzB2{@ delta 625 zcmX|7T}V@580H&a+i9#d%$Amskx?PVAtWS1A|!^4(8#i17a0*2nIRR7T4Xeat>d2P zhb)anu0kr`B7+ILkXR$=mm0E*bFoW_=t9O}eDt1Ocyr$8dEWPX-simOVLAWQ@p{gM zzF7%l-ie&68b((fQ;P#I7iq}4{AeGD`5G2osF?veT;AtK)dhKPsl2T`xO`T(p&*vHCFL0#70DsJj9JP44glza9 z9$zhyag7Z|t}EQXVZn@f(K6)0%KZ(Am>=fN9GS5i0pBej#u5^N+kEc3HvUeBhNYm$ z9lzbxXy%?~0}1m1+l)#S9`ZrCnveLPqrAf=f1g;;$2~aqOrvs=gX!bd0$tB73clp5 zp$Sgd^NJHj-tjTt@Xs(nlq{|m`aVcpdT&=g>ohOUd~s9N40{{XRmm&4iU8}!Mntkc Wc)#VS{L>*4zZJ^)ebhGFzvVwqIT5h{ diff --git a/PROMS/Formats/fmtall/FNPDEVall.xml b/PROMS/Formats/fmtall/FNPDEVall.xml index fef4639505648fb55239ab6e17c7fdb97195660e..549869a483a293a3a0337af5f7f4c98c33b069c1 100644 GIT binary patch delta 2455 zcmai0ZA_C_6u#G%uQDc;4*|ip3KoS5wG<=_r9(kLCn{w3(0mQ}F|yar?X zd>PP|OnKFGj|gY#L#vQKriH!3EG(a@uF*%xH9S)rWbTh^8t{G%en@x=-mARG8}P|` zg_SixFuNK)#_B(*H^nYt6Ur`ti-~D)-IRDPNrfR)XpP8C{DpHn#3mWJU6dx>BcM*s zLtsfB=P`ENg^P8u9#EHOk#X%^8IfW@urp}oSpUHp9go{!#cpG^^24=6**JW zOc+_4Ho;@snFA}iLbck3Z5`HX2VJ^>w+m}}fPf|=k3hz_^sJYj^%&Lx8jXQ>h+2&V z8Cn80TBO?n>vTr)=%xwiHkc6X+b~5SXCrx9H%gB&lRS=0=_$z~Pj?o2I>EBZr08T0 zh%1?ZvQ0`+r+=NyHTt3mG^6A4)_dfDw(J*ZZ_Uo*o#Mmn`xJC|vk}3-=2-%cEoKCt zY?1GjGzbP_=t>Wf(Jbf43+HQ(+F%q!{Y?b3;v>26jfxplE`BSEB!>rEHKyDUT9uXu#B)nD=iTtkV&dJx@a7Bw zMLB_@atY#g5wPq+iruhww-G_rZhU?ZWK`tw9#LB{K|oVUz*>pG1G+tV+#_sz{9NH= zPEgnAVU_cCgojB~o^{T72U4nkhxnRoIAa@CctR86fzviWsA`@^d87t%1~CowAdgV) zjpT78ju$I=@Y*ehv{w}E4RAQqyfvy9r`H~wM~JR_F0m)rkPB-|EmpFobKVOUYbvB$ zGv#WIH-WLf6tDAzexa>Tp#WWdk#x?0yD1vVY|)CUAXn(M#q%m;6%b`MJb5ql*%Dx{ zEmN)@yc{M@+fXqt)HE2SdzLCiSg~v6sK{DYxX_5hXp4r=8zV2d8!3LEF$vs_RC1v4 z;qrKKp%Kr-3*Aj7?iClBCb`0kEj8SdgK%&k{os%rbliuD1M%t01H47Wv%4R$@ETii6#cC)JH->z0GPh-k2{A6`WPGzQ_xUqlq} zbsLiEhZ}8X-Y@3b?oqT43wlG_SVZ%O$6&Pmj|j4OV5C!z3G?k^ocrKbhk^UV;|@Q8 zZ##3Me3;_)De&JSFnnu9<+q|nf%-e>aJ-q>QM64J|c}H z8+xySt|}*KnGN5ep>ivDLS@ze$pP*hL#p$RB)H?ql&gm;5>zcGC%AKp$Ak-NUrlLY z16ri{e`M}DO-O`yJ;IlA9nB-D0cF*(cEe5z^%j$~WLPdqvD8jlMTBN61rR-*J$)T_zN z9Wi3J>0DD>fgcU@6(H}{^l|v>=nH-f{yu8p$3)KC8~HiY7g5Kt`+I`jys);V>O`IU H-E02>x3U4} delta 567 zcmX|6e`J(l9QT~-bzXB`(`6;+oOzwsoO5z!a*~|9l369GE=fxzl@>XfM3S_oPu3>O zx#nbYtG@mIv8<9dbLMF2NHsb8YfgX7D~~>Jtbe{fzn;(c`3_W!PgB7M84JaRiM~kj zMyre1qJbZ)f@uFx!em?be@+`#q-TZS?TaXht^K9MTpv&fM>Wit79(ydS=VkVBy9~R zp~ZG+I~^K!QX`(y5=|Ql(R4`C8v;tQ8M1s=NP0TS@?D0KV;kAgpKVoA+C;6qncAZ* zVI|cZX>BXZ8?GnyZHz5#r}Vp<$k@R|d>2t>Hxuq2PqKUY(%nxfe;}x&_aIT>5Mx7! ziN=r6eR`DR-Eo$DJi(9DPHL&1rc^(}#L`)gz&VaJ1#0p0jM@Dh&IR6-yts_9IUAjq zX0dpAS?X6<(739xaLt2*FixRGn%BA5L7T$ha0st&hcIv}f$B(|+?4VNdsd9*s6)d- zbJRfU&YW09_6-gP;gmdykNLaH{_cB}GvgYCi5AJ;=QV|i)e5DDo(ze9))R&*&sbc2 zWytdvAs=YWyzwykR^#QAhst{k9n%g{Uo7-a&&$49R{G+f&xwDcuFXKtn-crVuG}|v Px!*N%KX=N_g~H>%h!N}g diff --git a/PROMS/Formats/fmtall/FNPEBKall.xml b/PROMS/Formats/fmtall/FNPEBKall.xml index b2e360596e90867a2c4479a5814e771eb0e32cd1..01c40411244c159c1746781fe592cd7bc84ec0c5 100644 GIT binary patch delta 2548 zcma)7ZA_C_6uws|rOJ0v6sPk2Vb|4KP_Uxn5T*lKzWf-~QTjy%N^N0tSvK7t=aMBG zIq~nN+2)^RL3jOUoMSQD2r^)VG-?PV&Lzey$~H4&X5Dk&Rz!zpX>xm>d(M0AbI*Ow zz2Amnj$Kln*_28}=5v~Amc{Csg*8)l=9-MRnT`3GodwuCu=-dRygOMnacw@Ol%J#D zQePo|%{jW7R!eOwzE<1VVOGi3(Wtgq6|wGW_0mI^)17oQ>!hj@*{hH{o5E>vQN))T zq%X$88XtKSJ2GEJ$F%+>^O#U1X9=A?oyv}}1;ZO6{M%tNysg>!a)(-5Vv2qU@+zaI7`xaH47 zr`G-;(lQtGL_720*Msyv<{)EkAy%!)oR$<;tuz5NteoKLcIILp=9NpR6q`P38m7Ee zVct%>Q;*TuIVy5iFOs1>sJNXBxy1;DO;e^3%3BlGv}4|d^XOE#JVxL`Iay(igLS~~ zi1@ifG-Qo%?x5^!J%A;9Qi3%(M(N3!k|00V1h6mnngoVC>9OZc@k9rf^|4+Q#mD-T zJvoFoUy0gUAfpZyOz{{ebJ3L9sQjmHo}jkkSkYLN#JQ6!MH^LcBjBuIQnVE>l9Tpg z19yu4;t)@iKEJY?AWj99h2zB985!l(l>&UKyTUb25Rf}|DCag0nTNz-{bCvYmfnQu zuk@o_?ZgpuGk-MOz)K-cjYTEgCC(Z`T;;-6f^@M>7qxD;jfmq$q`NK)`N?SPMM@<(uC7=(U&C>OqYyu?xxua9e0bF(g_I$HW($?fSPz%5B0YimH!6o zg!rZ`mU9nXEYr_TeOC_Ecp*tiN!Hj+e0w4HioeUjz)K^WN&#ZbVBn=|W)nd2=4*V3 zJd7Z!7Oe-SGb*mgm|GP_fK^*?z7W_J13>oH5Z8DS-UIO}Qc_2eBBp!W!n}))==BxyBA~voxe@nb*Z$=*msI|Eq z)ONtCS)MDZR@kI;71O~hH00X;GkpLapV~}7ER1VKx3C`|CGs&h@>ZMUE zMPm(_!*q0SEPeReeYKnoqS9dY*aowcwgmdAH9>sRiVGn?@3)#UhHTS`E*yRzs^!BA z6DjB!q`GQLQHnaaZ&-Y8Q@Eb8m4ZabrjUT7mCGq0X7-0)1q)&bJwOP~2*RXoGaYUJCH1eUht#iuwWy<2f6Qe{|eed{B;}KjrS5xTJB9D>#oc6OGipn#?jfwqJ}R` zTz1FurH_gceNgcrN7E!fCQkx(5fSF7XRk_h~@knQC)NPzih<@q_g9P5_4^vLUg@`xj~Du(NMB( zlcCVHS;O9{C9#d4?d=+g9UAeSgxw(|c4@J@*>ZY|QRpyFaRA z{6L$MmxqE%Du+!a^`nf9W2`Qm@WngHTJsdq?=y5p9~<#=bjkCrWfy!oc#)G%il{#w zP?G7Va|c)}UZR`498{o`su?AzfD$% zrruC0Z%u{zJB?4%K4z*K(=&XjT1>(GYDoGccX_pFY4-CnK=0fZ%-7pxaBh}QHm`B~ LTc14so^}5K!$;o= diff --git a/PROMS/Formats/fmtall/FNPSAM1all.xml b/PROMS/Formats/fmtall/FNPSAM1all.xml index fb0807c2e436c8812e66649f88ed86ca3b2f505a..5d6ee111cfc0541944dfa32a195ade47ea87c788 100644 GIT binary patch delta 2431 zcma)7ZBUd|6ut)*a1m_PYQ{eeiVC!?%eEqrCNks)WPB*5_=WogEU>%mF5nkzn3K-b zSnB!VG)|-Bl>Sk(Yi2);Xi8&{K|~_Q7zWE9<&-j0Q^OSW+?N$m(P?((-t(Mu-g}>W z?sM+$xfy-*+ex1+p2a^Dp5Ir*#nvpkfzf)h5K<=& zus=BuIFD;mPGFwTd)_th{#mhd^Ydj9WaAd2g=})r*h6}oaEeM%CxYDSOd5|0+xVhs zIL0QbgtE)60)>uLD*#!#DaI~bqFlJu7EzkbS?+ee_Tn(v`Am}u<3LlVylRb5sXh@9Htx?z zK`LzCm)pVD<`3)b@VkUfRB2r9BXHrXX~TMls6gB?8YhRO1sy~V?pk017+KJxKxeu| zMKbyn=*h4G=reC9(4VOyQ(x+%cn7xiidq!KE9%sl4mmw!kjV=#tHe7CRpQJ=eH7^w zF5XvU(dO2oZZ>4;WW?erL{1)gIXwztB-obrNJCbHa!$=MlT&7A^-{cw)o2F_;$l!- z1ePutP+2pw(*O#xuan*h4(iYj?dry%!Zw+l6RWaQa;(VSl+#HuPTYb=)Pz?neWjN; zV)1-(N!!w1igMvJLH5-f!`6}d4w{yp@X! zb@7Hg1>Vc+Br4is?244W^EF=0=0lJENN$*Cw5Bk;A6ca|8o=&_zOx0}8G3gNn2WW=}*0jkJYjqT*1n=Mr zC8n@7Skfg=t(!#T;gjpE` zz;BK=1ui&^Q8lXhxfN#gRK=DUk`HnEkIMaa{Sck;O%nAc>9P-D>d_SIp0H^yGV%!_(k9Xnf>rgANxL3|CSnBP7K`W`>*Di|#8rPyg z8c6I7Xe1zL?Zpkq1HoRkU}>#73D-jUK}ZR2fvDCpg7W=393se7^=1mn!}XACkUd+| z0FG_#p_rhiy@1Ae%m(9a+lRCmbff7{#eCenvz=>q{G+ec9w#rZRy|;~vUvxTQ_KFH zMvNcq?1NmFiDfFt--QeZw_N7^AwyWhVds5CBQ{MoH0bD=d$rgowux+!D#liM>Y)ga zly*#z9d4G#M9?T;SJjY-@uP-Yk8*5kjC~wO+0~F$9Qyrh#Wl~^QB5{K0W2)!VZyGUPC`>wZH<5I^qjw*V-c9rV16xcue*gdg delta 618 zcmY*VT}TvR6y+|%unfZx`w$T!v1~u?!yrQ}A~8tB5)z9H5)ly*n<15%5fK^vNCqLX zbR&s2QzBRlbn%8QOIQ{b6&3xk4;uTh1VO@PC9%xIM`t8qeYxK`=brD}?|vh*;em>t zccVj@Fd3YVjqqZ$^VWCLd84WQ=Ng-_WSv%B!IIt-q7|}iUbn?t#W!qCt>%qwb-bDL zjk!7=mBIMMkVNbd@!BTE5l4x&%^-;;4B|wyVy8uky&Y}GRcyB^j_**id8ba|B;iZ$ z0`l5`I(Gy0rho?8BP3&9h-AD2T5*p>QrZhTw-2G!{k~KV!1nhbB>xbQb=V?yyL4$f zqLH{=aCt|4NgfZfPXyT~p?9AGx_la8!)M@_KBwO=oF&0Y^5#6U-e1s(=PoHJ^+T#$ z31(bHF|MIB3_^=vht1BQI5)6T;%1H45B=uF+cl}&!R6{*#Xs)(QXXv}E{|H$`T&zu zJ}iB?WnjqoLtKQyeYr5#CgN;Pd=+bQ4YB=5Nqj08PzVMTk>@^9-2Ket>{FAE^~AU^ zQwFyrGlS;X3txt3@wCZT@K3!)DZa%=l-?=+^ugzs9~D3U?DO=u2=~lu+%g~I_Jsg{ gk#rf`pn<&>Op?@3Jj(l}IQ6HaKfCleyF{A(4;Ezo;Q#;t diff --git a/PROMS/Formats/fmtall/FNP_00all.xml b/PROMS/Formats/fmtall/FNP_00all.xml index eb92a09e3c7b6c2f5f140b10172fbf578b7d65ed..5cc7290af7053b7558c23db74f53f12d3a4101f2 100644 GIT binary patch delta 2321 zcmai0ZA_C_6n-x)7K%taV2FHHU?8Opfj^d+ zZ5TaS;*u@PVzMmR%r>t-_QwzQXDev1W5zK;kT^4qGpx(9ESi~}bK4>+n`!#q`Id9&Hk7d6ciT`T<8Ysy)1M(CXlx3cQG*zP*6V$tCJn>AIfU8q2IGzP%+D@o$ zIty{>I}kU*yXl|dSk6129f@Ohn9VRSJ5OGFl_6MIt4E;DoMMS~saNtyJyIVm)D@9& z-DMH6PKO{RYlgslmND5b_2JJi9mJ;tGzCF^D_cp<+u25p%*mN%iCvNtGkK!9y0|76 zb9F&DSI4?|US5d6VxFEr{*>_K3y%iF9I&X-F$d3CFTmaP1hNW{t^@8A7|2sNM<85i zL{L;TOW=MHd34VS4=W~*saSZDO2|`Hf}UBc$BKX8KPr-+9?_QYCpy1D6z>Qrn zTA{_~;Fe}@FoLu@za}7uO1lPY?Sp#e#o&*!^md&sj)3&eP@dkx0Wn&@@i*la(l}2R^7YF%O@rTwqC94JZ)_Wry(k4QQUN!VB`i*Do59 z$w~4=R19qm@^7}u8D=E&kRa;ex3^&tc;H;M9v9!O#!KP($3I!mq(@rl|5#(WU0H8LOnr*@vebR7Xjy#RCd1k~G+p$~rDZa|Q^ z1Gn#kyF2u(kLNT@6Ig5@kk^R758*~V^K(s8kjY$<3l^G-;Rp9byk8Qit_ZHUFTt&y zf5P?V60lgmm-(X&;)fP%5PojHr|=66L<{0N)Pp?y$6c#fGKmwwRDOK=M344!g*n8) z()zrjADh=6X-D{J_dS9Ak$PO3t9N6jmTboQL2b!|-&zXAY>`=k?Ww}&_~s!0-LjSf z!j=l*oQKN2381nj$QmMCq1viq4ah3QRaU(D0MuAhA=_FgW;Y%U<1JQ{EC5+A8-#m- zGR2#*YDK4rTxJ-sVJ}(}px?IYRHcpL?Y4BNv{6dC?dIe0e87g65`e0`Mi$@$duNy| zfF(8Bp+z|S3cgzc(6moaU>{yf0Gjs`IJ_V0B>?7Dq{2sALoAU>aS;E4%Q956CkTD* zO5WavB^-cbZ5cu$A=CLeB?1Ak&x#ODxgj+ zfa?d+K-D}E(@$oOHcUh#YVe4%%2VeLuoaF-Ir59-OB`Y%rZi8c#`s5V$WFW>R>*?; zAgi!96)qkip~Bu7+*kPoN9B|J_<8SYmK56xB@oB@4@$|);+{h0g4cl67WU3E8GbX+ uM}Qdf@}}UD?*Tgqmwh^Rkl*(eFt}p+RB;H)zb{hGOLI-OhUfaf==>MAC;9sT delta 620 zcmY*VO=uHg5ao+$2+Oj>HO)apii8q^1PLL8B1J?NTyVvxh$;S6#8z=t5D}5GR8R<| zZaaa3hiz#@LTOPMM6HO0LJy%x@sLBIKNRsG;$aV^Eb`$?K}ar-_ujmjVdlqhM}2b7 z+mc33he8D{PLAf&`rrTDrBuvl(IeEg*J{^#f1A$jE4JxEyggs&G+XLPTJEg1XpL(L zC&ZckAwk&#k}?M+r@Iuvy@wP*#iS&wTe6u#*-A??4@)vKFtbrIk4Uz%NZI*Fbs#6$ z&hLsSl?#$bdoX1Bs4jS^Hzc@zEF!pZTode{fZR3^RZa#hO~mw5uo9=i(r1t`&VrTB zH-}vaxc?$L?LJt;m%@U}SHQe$h|OOI`*tHD2vFU;Dfs6g=KQ)1XZwz1|1KKkeT4J} zfbNHYo=5PE$B3Cv0M-!hDmpuqf9jL^Y=`A@G%ICEk&%F`F^y)&RT}C`lI{3mVH>Z*}qq02% z*PDwAT6z=k{JZ8U4D0)QK;wfZ$p0ki&*y-)zDQdCicc*j1Z5fuJ9W&Gi+c6<%C12J ZtEuso7*DM(<6~=*Zf%_7kDIes{{em;0Q&#{ diff --git a/PROMS/Formats/fmtall/FNP_01all.xml b/PROMS/Formats/fmtall/FNP_01all.xml index 994ef125f1f1242d8c4e6f2539c5e3cfcb5f30b0..2c18265730eca5f2b0577c6be8b9d58fc1377e0d 100644 GIT binary patch delta 2552 zcmai0YfRHu6u$?kv=mT$plrDL!rHM?|0~FN3Haz7Xi-6(MkJ*z_!mlR3%a=_x(~}- z{NUKh%pO^gX>iMyMZIQAmZ<25X@drlF=LD)MBP4^Y-V5PbiCgQ8M zqD_Pm?3OV|vq$ig=Z1;XEOgN*TCg)CD=~)fj4Of%o{vhKML_IisnU(2zKn=GkZA<+ z`EjNL+%l3m$e?2;gZ`QQV5%2BGOI@o8x+E{^*z}2;xNhBj7Kynvk%eG%*dgxS&&#y z(vWcDu`DayBpT}$UBs^0d^1FL-J>^0P+!J5JUnOEVIhYcR~jD1!s zcx2z)0RRtn&eP~xK=?(FT$Va|@Zdb7{4Ohwg-5a+qYO4o zv(JNx<`Y4#rZ+sg@%!mOZ5M40MIl_68pZ9{D8wk?mq?3}9%{>iZ$yi|e^ zc9dR}_v}f`yl;1qhJ9f#Bzox;^y-)eO}hf%!v~rJle2%3Mn@bNeEe1{_hiSY?VgJ= zDVOZ{(46Z4pDfM2!C+cm9)ZfdAu#*I4yuobOso14d&45?4IkR_`GPy295;|gGo^%E zZiJ=^$%O?I02)v$&`ivx98)U?+&x%UlpqTWN!W<_g$_CcMFWzU%qTCiL8A;5krN%4 z7dt?gZxvHiI#!kB5qPhJGNWVdVwSWoz6OcZlvKeW{+E+YtWQfRSvva5Gy)xE15tS^ zh5sPOs&tv|qzvv@k^m;1u2MOpuOqQSsy}xv9foFvg*IrGUoRa1gKBcz?_|a|%dP|X zarbhE*-ua75ZEkDgxu?-g!=IVrvv=*q;n8b{7SAe)McQ8kERHJ@Ltyc^#j z8t_=9MSaPVAwd1uz?v~?s4{{FSN(-YD;MBd*Le&zEr5Vp8Xvmu5!LR>hJZZj>IVqo zzA6oZ@?=#XgZ9-n0;g9;80=q@Z3wD?q)C!{*S^5a!Ricj7S2=DAnsk88b3?apjKzW zU#rvOYv?&=)(prK)s(X!9;wb(ihsiE*jtlNCvUDx>x`JRJ{d393_}P{6F-E1*W4JZ zBQLE>24eTE)0A+?yji>{%EdxaCE75p){1v)QsbHCAt!_K=K55=aD9CNozpkmQo<({ zljOe}CO`^pFWy387S*VY=NLlL^2Sv#us~M}C?vIwl#>v`COb*BP5qF_>x`xnJ2I`K zbm`_^Y1~Z1$U>FD7je4p@%);_QD@C=j?h3?*q7jo@YIiK(+#_Fc)9w$U=5~;d z&rORXj79Z!2+O8=DtZ`8JPiCE8p<%1dh-ahd1>8-ah1_Wb3^|#(HdX(T3Q1-B2Z*!ij72JiNT}0v79&pbA&%1;ppp z<#8z1(_z}k`yN)CuTf`Dd`yCUD=&_t9h-xvNXQMeVu@Zr=T80B6G0g%@sEW?p&I3; zZAKUkfK=35o)Xj}de01JjP~ddQ*iHZyG{9NPoIrJJ)Jt)#TnwP5#7RBBq>i)u|D}w zYZIhBmK=Hn-|fzrFy#qJ)YdqBwQ9z(M1CkDPg6dfpEunYH!h=rv+`(UM)^*20+>ev z;LJWFsFX3f(akr0IMjS2Q?R|ss=~S|_xR~Yz75~?+o4S!^Y?;@{#5Y>6^-0K%xswp XcxOfz?7(*e*>vtNvB;kT->&-~1BNoG delta 629 zcmYL_eMnPL7{)p4a9LwqZ}ue;GUP^I6hcIcsFc2pY*8$USfVl_B4k8JP}Yqi#AJ;7 zBuHi~ZM0(L+B+g5Vnl&p#QY~AhAi-ph!`Ux#)wnz#xgGVy}$F^=ixc$+$~7!_L8Jg z2kVa}mg0F&4DafKuyhyFJrl?o?N#2_7{#Y$zW-d`yU5>`AFuHQiYq#*9K6cB@?X}A z1G63YxGGTdHB;AW%Rvi`4uP+06c(BkBCW`{4vfMof>ywv)bg)8A1FN2n8jg z=M+WH^CHowC?4W$`a-4VB9B}@kK!dw*aOnOtWpD9EwAwzo!3kFe&Yw;-YQXgki(fF z#jiwW_!lL^O#;cVj*a{j!g*xJo#Y$g^6a>atWnOh0^f)eg)t4;dnV?`a+JSs2>XGu zW73{fshC4Bk@FF|jmHYDPu+Mj<;L#QCR$<=;b)&&)6qY*esO&zS*B2mw|q0r8y$SX zWB4WCQT&y{!`EeuzEQZ7DI+plZ@-stPn+nT$)PysChrVi73+N5IkzBBj%&?%1y9~j JeP0qM{sMgC3Sj^M diff --git a/PROMS/Formats/fmtall/FNPall.xml b/PROMS/Formats/fmtall/FNPall.xml index 49f8608c7fb797e6a2b978d284b47ce9e793a2da..e6c5386b4de4ce272985279ffcc827bbe2517106 100644 GIT binary patch delta 2381 zcmaJ@T}+c_6n>9TprR9WN=$S@qJ!FXZBt4W5y1$Gp&$rD5LZ9ik5cF#Z2|u#0_wb2 zV&b{*Vp(?KE|y)nycdhfrZyczR*;$fn1#7Omc@&~M6(e?obJ3|DJg{l%#yXUKu3^I3x);6X)%%Vv1Lpst{p=8WJd&2TbRt8%!PgCT$LhYwJn0j z3umDPr9vIF@XLi+aJA$ntU|-K6r9q$iH3JRQnxT43&e9w&^n8=mVoh4QRNaNy_QpK+ny&sc1{plG_v^S*h(67S#-_MaOqXiO zX&*T`(74Z(frEFHMFnnmxt-YynEsd13!A6x;cLJcxMZa$_HP6uy^_q&(}C(q{6B}sG{Hr?WR zm6VYZ7QJP6al3VnG_6$+GCyjKf?8&sN;A39Sg9prW7UrWpIdDvRCS zkUJ|P_*V0C5xm(*z?$YTfLmePjlP3Jxc2?$tKF2YUE#saPKuOOiUqC5hp(-*0eCRe zW&#f{vyH(T4*|U~ril&(PFMSnkAd1lwe-@DM=61aS4h+x9?WVn5~8AoI@?Q;0#s7! z?55lVjam-haLj=h*Esax<$D|vQ2SU5aVW)x7JPiCd;{=@{yeBg=#Svt{_R)#zr~r> zDO@Y(VXf^p_{4bASt>{HH|LDXM?)klBOjB*&KPNX4t^YMGlHMLXbXeNPoF_VSv0t* z>ki&-e?r&cb}d~`w~qrUk2^NvNXJ%1dYDuft18ZPY=AnH>caevJ43*R-4;5*^AIXT zNX+nNkd)&c<`W)j-2i5K*Wr|Bt0Ijjf_RR15Yok#v9k_p9A!%>uwQY)lSbeB!oQPF zqdzKiH272SneQnfa{TK_5>Mv%AH;E-a3bEnev@)>|4QJAO1$n;dMd!Rfv^ZCQ#er$ zrJWb)G;cT+oFnh)pdJEzb7%iL6Mdqi@KJHm-nr+duG<$atxF_RRCXNtPO(6yL`WU|D6m6Iw zPM^|4kZ(R60Tl&jcGO$7^ODUv$S2OwTm^CRjG0hbAJAw7l|~9EX~t!d=ERv~oH+Y8 zfghaJDky3cv2O5g?<|CHtXBsi{$KA6P>J2>5?hJPkI(&#D_XbXOkakonw7J1#bsn5 zgGw;gFG>adQGT;81=fhaZ~>Z%W_E&=G6O=ZcKu5>w(vyek{fzXvy7GcU!>8u9!L7N zD$;{x6G}_UX7ed=N(t2Q0NJlkBz*y=xW77u!G4nxejIQ1rO_kXb@6cXEDE)NwiSeT;q6yoX&QAp~drBDB8D8DZk4&hH1XVqOaJ7Q%z#nMgC nL<4^RVHIZRK2vp5gL_5eLN`hcIXLlo^1!A`Uv0Vs*T485Rd*KV delta 476 zcmW-d@k>)t6vw%b@pz2!kO=>R{Sf}-4{AhYRz&oO@sJ3lsGyJ#8ABps$at8H2$AqR zA`Bj(R1^cp4ka0BP7x6i8L}S+$rv?AVvLJi#${YO`OCTA`?;TUINYuE=MS4hRhvXAbL-exzCREKvLr&hoezVhmTmUkJ*Bnc zVW{$$Vf9Ie%1_y=q}i)aGHPTD>Vd)Glty{lU@xn%^4!pu7p$$!a9N#Yt@P4hbxxz0 z(|G?%WBzpuqi>E74_mO`8dwVo%|!|G!KKpziA}D8;q?fq&H#+*JB7uaTGRAV}G;6%tda~Al#BPwatrV zcerU+Q*w`gh6{py-mEO)9ViS`B*I@^Nd4?Vs(L_~nj=m??avtor_gEqK&BQ$^KTon WrO}WI<>Lf;+mUD8YPnm9!l!>d90Gm- diff --git a/PROMS/Formats/fmtall/fnpnmpall.xml b/PROMS/Formats/fmtall/fnpnmpall.xml index f3300d420c3b0c01449a064f707b0a29b3775868..2d9bc5b7d72bc1a8bd5928c6b8adc70689826590 100644 GIT binary patch delta 2343 zcma)7TTGNk6rKYt%R&%Qo3;-sS}o|ZU4NGq1?fUmirf|~-Ut`>?kaon-{m5pmh`Pj ztI2t^)EG@uYpvKJF=-$A)&^IyA%qZO2yU!R8*ibt*4TnQGrQsiZTs@id~?2;`R1E* z=Ktt!%Gr_Bf!<}9Ry~M$%bl20JBS-|DzGl^8(h1hR<# zSFIMjO8k2D7t|JD`N;+R#M^2T*l;FS0UI~wje*X_oa_K=XCa(Enwv3)SQtmP{fH@R zXSFug#=Ojf(2`4R*=K$kP14WGkv0}!ow&lhnif^`6F@sazKMW2e@cK1g8&x8C}{1> z#XQU_7SqT+9&$!-k#QF6c(2z0c3x&20Rq|Ui~_8Sg3iuVnq^}LNLjzT$$cvY%OyK1=t4NU- zzpFMAn64&8UL2|sk(runkRk3VL_Q|`p<#`c($0$$R)s)D9i@R6r|OIZvg*lvFUIN> zotGvBC>7$T`FY1Iw4u*ppzmo*l>hX8DriJ1JMgcahD6V}YlPo!NCWWUtp*eL`0|~U z(mwoSrvPhqN$_}=N#~Qv<7GbVD;nl$d&mJF>h>taD&9kK{Ft@Z2!3waJ1RhSqX1=% zqmUe6cARc7XsM+Xw8?^4()2Ld&D`g7Mqr@bWXk{0@9XYH)+^sDas~tLK^LOJ zl<%5&t)4+KHFD-l6(EG?R3n7=gi0A2!t)_Bfmmn^v>}mX^a=>Ii9V^F4n^?W_6IUb zX(JO)L<4xbbO;AJW`SPM4g-YwRL2kyxY()Jgz1XCl5o8z4F|f?=rYP#ImWup_-@lx zd^##Jm`3Bd%wwIC@LE{BMO4R4tc#Vgbu2!WOv!p7f+bDEFJULj;}sE65@9^owTZqr zx^B)BmL8Y#R20TKqx^@%X)w2a&c91~j`x4We1F(PVtzk-i*mD8dbGaz$`g;kD$63Z zXCX!XBxd5w^=?@Ff)%8wR$R^8-U;(iX^v#i?R@Fc ew*Ut=e-0gZ=cr!WLG?v{YkKxp@X}*fF8>2384n8p delta 696 zcmY*VU1$?w5ahyVI6??PLda7*HI*Wv4I&amL_#T{1PP^Tv=#qpq$fSG1(6`3h?E$@ z;b0Mwk~WG}s{~i7h{cGA5+tbfL5g5~QK=e(_)re{a4!#SeYo41*}2)hz46YOtBZ0b zIObARq=J5Eg9Sv^9Y<}A3kQO}CXZ|JWxjB!fR6QvWnO8|Bevn_e|+!8?p3^izR-%l zc!hb(N?xTsgnG-=D!+%So3ai{Zgwb0wh5%d7FS7$h)bcvTU-i;wn`Y=BoY79GV<}5kRHdVOKNpfdc44jwb%d$lqu?LO_ie6wAzsMPVqm0ry z&e!w&G77xzkhz2uexq${iL|R65WXhSdfkFC;X!TEjXQb>X3-C0yh_GIKtZwOMdY@? zhnpc7_iX&07H Date: Mon, 14 Oct 2024 16:17:19 -0400 Subject: [PATCH 13/32] B2024-079 Consistency of adding_editing_removing fields in RO Editor - Referenced Object Definition Form --- .../Exe/RefObj/ROEditor/RODefFrm.cs | 63 +++++++++++++++---- .../LibSource/RODBInterface/RODBInterface.cs | 9 ++- .../LibSource/RODBInterface/SqlRODB.cs | 7 ++- .../LibSource/VlnStatus/StatusMessageFrm.cs | 2 +- 4 files changed, 65 insertions(+), 16 deletions(-) diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs index ebbc23eb..0cbd3d94 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs @@ -504,7 +504,7 @@ namespace ROEditor ROField copyrof = new ROField(rof.GetFieldname, rof.GetRecID, rof.GetMasterRecID, rof.GetFieldType); AvailList.Add(copyrof); - lboxAvail.Items.Add(copyrof.GetFieldname); + lboxAvail.Items.Add(CvtFldToUserFld(copyrof.GetFieldname)); InUseList.RemoveAt(indx); if (InUseApplcList.Contains(rof)) // C2021-026 remove from the field applicability list InUseApplcList.Remove(rof); @@ -527,7 +527,7 @@ namespace ROEditor ROField copyrof = new ROField(rof.GetFieldname, rof.GetRecID, rof.GetMasterRecID, rof.GetFieldType); AvailList.Add(copyrof); - lboxAvail.Items.Add(copyrof.GetFieldname); + lboxAvail.Items.Add(CvtFldToUserFld(copyrof.GetFieldname)); InUseList.RemoveAt(indx); if (InUseApplcList.Contains(rof)) // C2021-026 remove from the field applicability list InUseApplcList.Remove(rof); @@ -555,7 +555,7 @@ namespace ROEditor ROField copyrof = new ROField(rof.GetFieldname, rof.GetRecID, rof.GetMasterRecID, rof.GetFieldType); InUseList.Add(copyrof); - lboxInUseCB.Items.Add(copyrof.GetFieldname); + lboxInUseCB.Items.Add(CvtFldToUserFld(copyrof.GetFieldname)); AvailList.RemoveAt(indx); lboxAvail.Refresh(); lboxInUseCB.Refresh(); @@ -577,7 +577,7 @@ namespace ROEditor ROField copyrof = new ROField(rof.GetFieldname, rof.GetRecID, rof.GetMasterRecID, rof.GetFieldType); InUseList.Add(copyrof); - lboxInUse.Items.Add(copyrof.GetFieldname); + lboxInUse.Items.Add(CvtFldToUserFld(copyrof.GetFieldname)); AvailList.RemoveAt(indx); lboxAvail.Refresh(); lboxInUse.Refresh(); @@ -740,7 +740,7 @@ namespace ROEditor { ROField rof = (ROField) InUseList[i]; rofname = rof.GetFieldname; - if (inusename == rofname) + if (inusename == rofname || inusename == CvtFldToUserFld(rofname)) { found = true; break; @@ -845,7 +845,7 @@ namespace ROEditor { ROField rof = (ROField) InUseList[i]; rofname = rof.GetFieldname; - if (inusename == rofname) + if (inusename == rofname || inusename == CvtFldToUserFld(rofname)) { found = true; break; @@ -1196,7 +1196,8 @@ namespace ROEditor return; } } - + + string origname = CvtFldToUserFld(rof.GetFieldname); uint ftype = rof.GetFieldType; if (ftype == (uint)FieldTypes.FrmtSingleTxt || ftype == (uint)FieldTypes.VariableTxt || ftype == (uint)FieldTypes.SingleTxt || ftype == (uint)FieldTypes.Table || @@ -1212,6 +1213,10 @@ namespace ROEditor nwcomb.ShowDialog(); } + //need to refresh pull from table for fields in use. + _ = myrodb.RODB_GetFields(elem, 0, true); + string newname = CvtFldToUserFld(rof.GetFieldname); + // Update Lists & Text boxes to represent any modified text. if (isInSelList) { @@ -1225,20 +1230,28 @@ namespace ROEditor rof = (ROField) InUseList[i]; if (rof.GetFieldname != null) { + string fieldname = CvtFldToUserFld(rof.GetFieldname); + // C2021-026 if doing Parent/Child enabled RO Editor, put the In Use fields in the Check Box List instead of the normal list if (PCApplicabilityEnabled) { - this.lboxInUseCB.Items.Add(rof.GetFieldname); + this.lboxInUseCB.Items.Add(fieldname); if (rof.FieldTypeCanDoApplicability()) { if (ContainedInUseApplicList(rof)) - this.lboxInUseCB.SetItemCheckState(lboxInUseCB.Items.IndexOf(rof.GetFieldname), CheckState.Checked); + this.lboxInUseCB.SetItemCheckState(lboxInUseCB.Items.IndexOf(fieldname), CheckState.Checked); } } else - this.lboxInUse.Items.Add(rof.GetFieldname); + this.lboxInUse.Items.Add(fieldname); } } + + if (origname != newname) + { + tbMenuVal.Text = tbMenuVal.Text.Replace($"<{origname}>", $"<{newname}>"); + tbRetVal.Text = tbRetVal.Text.Replace($"<{origname}>", $"<{newname}>"); + } } else { @@ -1248,7 +1261,7 @@ namespace ROEditor { rof = (ROField) AvailList[i]; if (rof.GetFieldname != null) - this.lboxAvail.Items.Add(rof.GetFieldname); + this.lboxAvail.Items.Add(CvtFldToUserFld(rof.GetFieldname)); } } } @@ -1262,8 +1275,11 @@ namespace ROEditor if (rof.GetFieldname != null) { AvailList.Add(rof); - lboxAvail.Items.Add(rof.GetFieldname); + lboxAvail.Items.Add(CvtFldToUserFld(rof.GetFieldname)); } + + //need to refresh pull from table for fields in use. + _ = myrodb.RODB_GetFields(elem, 0, true); } // C2021-026 Check/un-check field for Parent/Child values private void lboxInUseCB_ItemCheck(object sender, ItemCheckEventArgs e) @@ -1497,6 +1513,7 @@ namespace ROEditor this.btnCancel.Size = new System.Drawing.Size(80, 24); this.btnCancel.TabIndex = 10; this.btnCancel.Text = "Cancel"; + // // RODefFrm // @@ -1519,6 +1536,28 @@ namespace ROEditor this.PerformLayout(); } + + //if User clicked save (DialogResult.OK) close the form + //if use did not click save, ask if they are sure they want to close the form + //only close if they say "Yes, they want to" + protected override void OnFormClosing(FormClosingEventArgs e) + { + if (this.DialogResult != System.Windows.Forms.DialogResult.OK && !CloseCancel()) + { + e.Cancel = true; + } + } + + public static bool CloseCancel() + { + const string message = "Are you sure that you would like to cancel? Information may not be saved."; + const string caption = "Cancel"; + var result = MessageBox.Show(message, caption, + MessageBoxButtons.YesNo, + MessageBoxIcon.Question); + + return result == DialogResult.Yes; + } #endregion } } diff --git a/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs b/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs index 664993d8..c73b191b 100644 --- a/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs +++ b/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs @@ -339,7 +339,7 @@ namespace RODBInterface public abstract bool RODB_WriteRO(VlnXmlElement ro); public abstract bool RODB_InsertRO(VlnXmlElement ro); public abstract ushort RODB_GetFieldType(VlnXmlElement elem, string TableName, string Fld); - public abstract ArrayList RODB_GetFields(VlnXmlElement elem, uint rtype); + public abstract ArrayList RODB_GetFields(VlnXmlElement elem, uint rtype, bool refresh = false); public abstract string RODB_GetSchemaPiece(string Recid, string table); public abstract bool RODB_NewSchemaPiece(string recid, string parentid, string table, string schpiece, uint rtype); public abstract bool RODB_WriteSchemaPiece(string Recid, string table, string schpiece); @@ -2294,11 +2294,16 @@ namespace RODBInterface } // For the given element's table, get all of the RO fields defined in this table. - public override ArrayList RODB_GetFields(VlnXmlElement elem, uint rtype) + public override ArrayList RODB_GetFields(VlnXmlElement elem, uint rtype, bool refresh = false) { string table = elem.GetAttribute("Table"); if (!FieldDefinitions.ContainsKey(table)) FieldDefinitions.Add(table, RODB_GetFieldsFromDB(elem)); + else if (refresh) + { + FieldDefinitions.Remove(table); + FieldDefinitions.Add(table, RODB_GetFieldsFromDB(elem)); + } return FieldDefinitions[table]; } private Dictionary _FieldDefinitions = null; diff --git a/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs b/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs index c7794a61..1e629bca 100644 --- a/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs +++ b/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs @@ -1744,13 +1744,18 @@ namespace RODBInterface return ftype; } // For the given element's table, get all of the RO fields defined in this table. - public override ArrayList RODB_GetFields(VlnXmlElement elem, uint rtype) + public override ArrayList RODB_GetFields(VlnXmlElement elem, uint rtype, bool refresh = false) { string table = elem.GetAttribute("Table"); if (!FieldDefinitions.ContainsKey(table)) { FieldDefinitions.Add(table, RODB_GetFieldsFromDB(elem)); } + else if (refresh) + { + FieldDefinitions.Remove(table); + FieldDefinitions.Add(table, RODB_GetFieldsFromDB(elem)); + } return FieldDefinitions[table]; } private Dictionary _FieldDefinitions = null; diff --git a/PROMS/ReferencedObjects/LibSource/VlnStatus/StatusMessageFrm.cs b/PROMS/ReferencedObjects/LibSource/VlnStatus/StatusMessageFrm.cs index 9dbf8d70..386d145c 100644 --- a/PROMS/ReferencedObjects/LibSource/VlnStatus/StatusMessageFrm.cs +++ b/PROMS/ReferencedObjects/LibSource/VlnStatus/StatusMessageFrm.cs @@ -85,7 +85,7 @@ namespace VlnStatus this.lblStatMsg.Name = "lblStatMsg"; this.lblStatMsg.Size = new System.Drawing.Size(420, 81); this.lblStatMsg.TabIndex = 0; - this.lblStatMsg.Text = "Put Satus Message Here"; + this.lblStatMsg.Text = "Put Status Message Here"; this.lblStatMsg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // StatusMessageFrm From a8294bb01a1076d9854c7701a7132501db247054 Mon Sep 17 00:00:00 2001 From: mschill Date: Tue, 15 Oct 2024 08:40:12 -0400 Subject: [PATCH 14/32] C2024-029 RO Editor - Referenced Object Definition Form - Add check if items changed before prompting to possibly save --- .../Exe/RefObj/ROEditor/RODefFrm.cs | 45 ++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs index 0cbd3d94..8c2a5c57 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/RODefFrm.cs @@ -1542,7 +1542,7 @@ namespace ROEditor //only close if they say "Yes, they want to" protected override void OnFormClosing(FormClosingEventArgs e) { - if (this.DialogResult != System.Windows.Forms.DialogResult.OK && !CloseCancel()) + if (this.DialogResult != System.Windows.Forms.DialogResult.OK && IsPendingChange() && !CloseCancel()) { e.Cancel = true; } @@ -1558,6 +1558,49 @@ namespace ROEditor return result == DialogResult.Yes; } + + //return true if a field has been modified + private bool IsPendingChange() + { + if (origRetVal != this.tbRetVal.Text) + return true; + + if (origMenuItem != this.tbMenuVal.Text) + return true; + + // check if in use records have changed + string inuserecs = null; + ROField rof; + for (int i = 0; i < InUseList.Count; i++) + { + rof = (ROField)InUseList[i]; + if (rof.GetFieldname != null) //DO YET: why null? + { + inuserecs = inuserecs + rof.GetRecID; + if (i + 1 < InUseList.Count) inuserecs = inuserecs + " "; + } + } + if (inuserecs != origFieldsInUse) + return true; + + + //check if applicability fields have changed + string applicfieldrecs = null; + for (int i = 0; i < InUseApplcList.Count; i++) + { + rof = (ROField)InUseApplcList[i]; + if (rof.GetFieldname != null) + { + applicfieldrecs = applicfieldrecs + rof.GetRecID; + if (i + 1 < InUseApplcList.Count) applicfieldrecs = applicfieldrecs + " "; + } + } + if (applicfieldrecs != origApplicFields) + return true; + + //nothing has changed + return false; + } #endregion } } From 9f1dce896fd53a83ca5d3a0d84bf504b8f5e632c Mon Sep 17 00:00:00 2001 From: mschill Date: Tue, 15 Oct 2024 08:58:15 -0400 Subject: [PATCH 15/32] GIT_ATTRIBUTE_FILE - adjusting GIT settings so should be able to see diff of xml files in GIT (and not just Visual Studio history) --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 76c3d5f8..ace8f553 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,4 +3,4 @@ ## ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitattributes -*.xml diff \ No newline at end of file +*.xml text \ No newline at end of file From f17db695d3687a6b107ce66c816898c2d3782696 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Wed, 16 Oct 2024 16:23:31 -0400 Subject: [PATCH 16/32] C2020-049-Add-the-ability-for-PROMS-to-remember-open-procedure-tabs-fixed-print --- PROMS/VEPROMS User Interface/frmVEPROMS.cs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.cs index 72faa7ed..e836a859 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.cs +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.cs @@ -1654,6 +1654,10 @@ namespace VEPROMS // B2017-214 added a null reference check // B2010-071 Since we cannot tell if the user click on the X in Word or the X in PROMS, ask if the current tab // should be closed or if we should exit PROMS or just Cancel to continue working + if (tc._MyDisplayTabItems.Count < 1) // If all thabs are closed in the editor will indicate that in the database. + { + VEPROMS.CSLA.Library.Item.DeactivateStateDisplayTabTmp(MySessionInfo.UserID); + } if (!_WeAreExitingPROMS && !ClosingWithError && tc.SelectedDisplayTabItem != null && tc._MyDisplayTabItems.Count > 0) { // B2019-071 dialog to ask user if we are to close one tab or exit @@ -2349,6 +2353,7 @@ namespace VEPROMS public void openDisplaytabstate() { + // Retrieve edit tab state from database. DataTable DisPlayTabState = VEPROMS.CSLA.Library.Item.GetDisplayTabs(VlnSettings.UserID); if (DisPlayTabState.Rows.Count > 0) @@ -2356,11 +2361,11 @@ namespace VEPROMS foreach (DataRow TabState in DisPlayTabState.Rows) { int _ItemID = (int)TabState["ItemID"]; - //ItemInfoList _Procedures = ItemInfoList.GetList(_ItemID, (int)E_FromType.Procedure)); ItemInfo _Procedure = ItemInfo.Get(_ItemID); - //ItemInfo.Get - //ItemInfo.Get + // Open procedure in the editor. OpenItem(_Procedure); + // SelectedStepTabPanel needs to be set so the print buttons on the ribbon will work. + SelectedStepTabPanel = tc.MyEditItem.MyStepPanel.MyStepTabPanel; } } } From aceb928dbacaa8e7f367f3e8e2f0c8af4b5cc6bb Mon Sep 17 00:00:00 2001 From: Matthew Schill Date: Thu, 17 Oct 2024 09:17:01 -0400 Subject: [PATCH 17/32] Delete .gitattributes remove gitattributes file --- .gitattributes | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index ace8f553..00000000 --- a/.gitattributes +++ /dev/null @@ -1,6 +0,0 @@ -# ---> VisualStudio -## Show diffs for xml files in GIT -## -## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitattributes - -*.xml text \ No newline at end of file From a8196db67692ce8d7de3ad434660077a0863a21b Mon Sep 17 00:00:00 2001 From: John Jenko Date: Wed, 23 Oct 2024 11:06:31 -0400 Subject: [PATCH 18/32] =?UTF-8?q?F2024-076=20-=20Added=20a=20line=20before?= =?UTF-8?q?=20the=20continue=20message=20in=20the=20background=20formats.?= =?UTF-8?q?=20Centered=20the=20bottom=20continue=20message=20for=20the=20s?= =?UTF-8?q?tep=20editor=20sections=20=E2=80=93=20all=20formats?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Formats/fmtall/BVPS1all.xml | Bin 131200 -> 131212 bytes PROMS/Formats/fmtall/BVPS2all.xml | Bin 97172 -> 97172 bytes PROMS/Formats/fmtall/BVPSAOPall.xml | Bin 148552 -> 148552 bytes PROMS/Formats/fmtall/BVPSAtchall.xml | Bin 126230 -> 126252 bytes PROMS/Formats/fmtall/BVPSBCKall.xml | Bin 73366 -> 73376 bytes PROMS/Formats/fmtall/BVPSNIBCKall.xml | Bin 71420 -> 71430 bytes PROMS/Formats/fmtall/BVPSSAMGBCKall.xml | Bin 70520 -> 70530 bytes PROMS/Formats/fmtall/BVPSSAMGall.xml | Bin 126914 -> 126926 bytes 8 files changed, 0 insertions(+), 0 deletions(-) diff --git a/PROMS/Formats/fmtall/BVPS1all.xml b/PROMS/Formats/fmtall/BVPS1all.xml index 348196de59271deb3c404f9559db95cb0a75ce31..4d56bea98f1f536fdf2cd990687ab33061e4e1ac 100644 GIT binary patch delta 259 zcmZo@X@8AT?`tzz5Wx0z9klhJ(o#KVl0tVRqb45rgRo?x_`{-K+3%C>!s6Iij! znZb;T+ir1`F$iqgbf9J3(8Gqmn%D8TOLK~wUD@bfRP;9muOty8}Z^jMNdr}!i zCd;j2+upaCQHzriqHjA;pBLlyuzf&{P$7^}vw%9bZMQhe7zH*CWJULOh0}~3Tu6!* oOb3djOIthiEN*+kx@VtBsd)?{c?H(8&ksc zxZ8|I%jHfm@_`jAUSoVK0%i%mX8g_uQ|mqb&VNQbkRdkPFMMK5V}(h`PnY`7I0a%7 zNOn3n>E+@hi Mg%H{%#pIy{0NgrE0RR91 delta 233 zcmX@n!Fi&CvtbKk+)`!>27~R1OBsu~V63H#(>IthiEN*+kx@VtBsd)?{c?H(8&ksc zxZ8|I%jHfm@_`jAUSoVK0%i%mX8g_uQ|mqb&VNQbkRdkPFMMK5V}(h`PnY`7I0a%7 zNOn3n>E+@hi Mg%H{%#pIy{0LCgy(EtDd diff --git a/PROMS/Formats/fmtall/BVPSAtchall.xml b/PROMS/Formats/fmtall/BVPSAtchall.xml index f085aaae1cc55f45e287cb3a7e318b078509b759..3b4cd3473ffa2bbd0b4b331c2a9f4e96440e8c51 100644 GIT binary patch delta 254 zcmbPsi+#;4_J%Ete+rpR8O*0YJi+*K`i3ctO4DU#GAeD?DQ4tjg-Q5N+rwxxeL(|b z#CC;B#vQ82;%3_u<}-fcWCWW~$!f%4!eBam;a$du(*v$DI&J^3iqV1{lZ4ZAQYQ^Om}#}C^db}RYs%jJ9aSEp_;uNs9l#0^nH666SfPjW|U%u2)~@Z;5p;A?H4vOMzO;5eVq1!v0!`O4#o{o zz3->5dBf;3x#1_v^oCW8a?|H|Fluc-beK^Cq6KLB%jrO?5@~ delta 14 WcmZ3mmu1>smJPH1Y+mx`k0Jm&NeFKM diff --git a/PROMS/Formats/fmtall/BVPSNIBCKall.xml b/PROMS/Formats/fmtall/BVPSNIBCKall.xml index 150a0e992a7f8ce0885f3473f5fa89852ff32abb..ad5caba12e1de61ccca9a442ddda1f23e6ebca23 100644 GIT binary patch delta 23 fcmeyfmZfbS%Yv_*)eHp;i3~*ywVVHc`Kt&3dcq2W delta 13 VcmZo$$MR<_%Yv_)xxW5U1OPGl2TA|{ diff --git a/PROMS/Formats/fmtall/BVPSSAMGBCKall.xml b/PROMS/Formats/fmtall/BVPSSAMGBCKall.xml index 8468c05e6b948540f3c826b725542ca4f8a79312..46fb84fef023c286283e28bf0f4c3b3e7a5759d4 100644 GIT binary patch delta 24 gcmeydjHPKg%Z8edoYf2k42cXy47Ho9KmJt&0E21@ZU6uP delta 14 WcmZo#&hld!%Z8edo7+DAQ3L=wDhM2sDcCQP4T$QUraFO*SaJI5l%L!69ghKaEnF_i7^diW61VDyBMG0vJ7NMDMal) jPe!fjHMT(4l^tUgftv*J>~^4MgVD~@B{gVs;>AYoz delta 210 zcmX?ipZ(B%_J%EtY{kqL3L8SNnM J18T381pqhrOc?+G From b0c55d09b0f77a4d480c4981036eeb3957b549af Mon Sep 17 00:00:00 2001 From: John Jenko Date: Wed, 23 Oct 2024 11:59:55 -0400 Subject: [PATCH 19/32] F2024-081- Removed the extra blank line after the Alternate High Level Step type. This was mistakenly changed during format cleanup. It is now restored to what it should be. --- PROMS/Formats/fmtall/CATall.xml | Bin 61466 -> 61564 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/PROMS/Formats/fmtall/CATall.xml b/PROMS/Formats/fmtall/CATall.xml index 57915e32c026717a00e8469ee6e851a74b07f2a3..08b84a23a9e49afb3b8cdc058a71e16102920eff 100644 GIT binary patch delta 61 rcmbRBfceh@<_!k|`4t#Y;N*$sijyBiC{2EIiUUKgH!OIuRM0#CBb5+r delta 25 hcmezKfO*yf<_!k|CoeEin*6|qZ}Ndqt;ID#^8l&w3_$<@ From c867d4e4b155d0df8792bcd8ce9913596615febd Mon Sep 17 00:00:00 2001 From: mschill Date: Wed, 23 Oct 2024 13:20:20 -0400 Subject: [PATCH 20/32] =?UTF-8?q?C2024-027=20RO=20Editor=20=E2=80=93=20Add?= =?UTF-8?q?=20additional=20feature=20to=20allow=20Cut/Paste=20(Moving)=20a?= =?UTF-8?q?=20RO=20within=20the=20same=20table.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Exe/RefObj/ROEditor/ROEditor.cs | 995 +++++++++++------- .../Exe/RefObj/ROEditor/ROEditor.resx | 4 +- .../LibSource/RODBInterface/RODBInterface.cs | 15 +- .../LibSource/RODBInterface/SqlRODB.cs | 9 +- PROMS/VEPROMS User Interface/ROBuild.Sql | 6 +- 5 files changed, 661 insertions(+), 368 deletions(-) diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs index e2f8ed31..4cf8fc47 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs @@ -300,6 +300,8 @@ using RODBInterface; using ROFields; using Org.Mentalis.Files; using System.Runtime.InteropServices; +using System.Linq; +using System.Collections.Generic; //using IniFileIO; @@ -333,7 +335,9 @@ namespace ROEditor private System.Windows.Forms.MenuItem menuRO; private System.Windows.Forms.MenuItem menuRONew; private System.Windows.Forms.MenuItem menuNewRefObj; - private System.Windows.Forms.MenuItem menuROEdit; + private System.Windows.Forms.MenuItem menuROEdit; + private System.Windows.Forms.MenuItem menuROCut; + private System.Windows.Forms.MenuItem menuROPaste; private System.Windows.Forms.MenuItem menuRODelete; private System.Windows.Forms.MenuItem menuROSave; private System.Windows.Forms.MenuItem menuROProperties; @@ -352,11 +356,15 @@ namespace ROEditor private TextBox _CurrentTextBox; // currently selected TextBox field public static string[] PCChildren; //C2021-026 list of Parent/Child Children - public TextBox CurrentTextBox + public TextBox CurrentTextBox { get { return _CurrentTextBox; } set { _CurrentTextBox = value; } } + + public List ROsSelectedforMultiMove { get; set; } //to allow multiple RO nodes to be selected + public bool ROCutWasSelected { get; set; } = false; + private VlnXmlElement rootXml; private TreeNode rootNode; @@ -379,6 +387,7 @@ namespace ROEditor private const int ROGROUPIMAGE = 0; private System.Windows.Forms.Panel panel2; private const int ROIMAGE = 1; + private Color MULTISELECTCOLOR = Color.LightGreen; //back color that multiselected ROs will show private ToolBarButton tbtnSave; private ToolBarButton tbtnRestore; @@ -388,7 +397,7 @@ namespace ROEditor private System.Windows.Forms.MenuItem menuItem2; private System.Windows.Forms.ImageList imageListToolBar; private Label lblDuplicateRO; - private ToolBarButton tbtnZoom; + private ToolBarButton tbtnZoom; public Form1(string PassedInPath, string specificro) { @@ -405,13 +414,15 @@ namespace ROEditor DbConnectPath = PassedInPath; // Setup the context menu - MenuItem[] ContextMenuItemList = new MenuItem[6]; + MenuItem[] ContextMenuItemList = new MenuItem[8]; ContextMenuItemList[0] = new MenuItem("Expand/Collaspe",new EventHandler(roTreeView_ToggleExpandCollapse)); ContextMenuItemList[1] = menuRONew.CloneMenu(); ContextMenuItemList[2] = menuROEdit.CloneMenu(); - ContextMenuItemList[3] = menuRODelete.CloneMenu(); - ContextMenuItemList[4] = menuROSave.CloneMenu(); - ContextMenuItemList[5] = menuROProperties.CloneMenu(); + ContextMenuItemList[3] = menuROCut.CloneMenu(); + ContextMenuItemList[4] = menuROPaste.CloneMenu(); + ContextMenuItemList[5] = menuRODelete.CloneMenu(); + ContextMenuItemList[6] = menuROSave.CloneMenu(); + ContextMenuItemList[7] = menuROProperties.CloneMenu(); ContextMenu treePopupMenu = new ContextMenu(ContextMenuItemList); @@ -589,6 +600,8 @@ namespace ROEditor protected void roTreeView_AfterSelect (object sender, System.Windows.Forms.TreeViewEventArgs e) { + TreeNode PreviousNode = LastSelectedNode; + // if the same node was selected, don't do anything. if (LastSelectedNode != null && LastSelectedNode.Equals(roTreeView.SelectedNode)) return; @@ -622,7 +635,7 @@ namespace ROEditor // Enable the Save item if changes were made // Just copy the state of the Save Button menuROSave.Enabled = tbtnSave.Enabled; - roTreeView.ContextMenu.MenuItems[4].Enabled = tbtnSave.Enabled; + roTreeView.ContextMenu.MenuItems[6].Enabled = tbtnSave.Enabled; // Should the properties menu item be available? VlnXmlElement curelem = (VlnXmlElement) CurrentNode.Tag; @@ -651,9 +664,82 @@ namespace ROEditor EditRO(curelem); else updateRoListView(CurrentNode); + + //cut is only enabled on RO Values + menuROCut.Enabled = roTreeView_IsSubgroupOrRO() && curelem.Name != "vlnGroup"; + roTreeView.ContextMenu.MenuItems[3].Enabled = menuROCut.Enabled; + //paste is only enabled on subgroups and only once Cut has been selected + menuROPaste.Enabled = roTreeView_IsSubgroupOrRO() && curelem.Name == "vlnGroup" && ROCutWasSelected && (ROsSelectedforMultiMove.Count > 0); + roTreeView.ContextMenu.MenuItems[4].Enabled = menuROPaste.Enabled; + + //code to allow selection of multiple nodes for Move + //if Ctrl/Shift Key is held down + if (ROsSelectedforMultiMove == null) + ROsSelectedforMultiMove = new List(); + + if ((Control.ModifierKeys & Keys.Shift) != 0) + { + //if shift is held down, clear existing nodes then add the range of nodes + roTreeView_ClearAllMultiSelect(); + + if (PreviousNode.Index < CurrentNode.Index) + { + //Traverse Down + TreeNode nodeIter = PreviousNode; + do + { + VlnXmlElement curelemforNodeIter = (VlnXmlElement)nodeIter.Tag; + if (curelemforNodeIter.Name != "RO_Root" && curelemforNodeIter.Name != "vlnGroup") + { + nodeIter.BackColor = MULTISELECTCOLOR; + ROsSelectedforMultiMove.Add(nodeIter); + } + } + while (nodeIter != CurrentNode && (nodeIter = nodeIter.NextNode) != null); + } + else + { + //Traverse Up + TreeNode nodeIter = PreviousNode; + do + { + VlnXmlElement curelemforNodeIter = (VlnXmlElement)nodeIter.Tag; + if (curelemforNodeIter.Name != "RO_Root" && curelemforNodeIter.Name != "vlnGroup") + { + nodeIter.BackColor = MULTISELECTCOLOR; + ROsSelectedforMultiMove.Add(nodeIter); + } + } + while (nodeIter != CurrentNode && (nodeIter = nodeIter.PrevNode) != null); + } + } + else + { + //deselect all currently selected if ctrl key not held down, + //add the current item that is clicked + //ignoring if a group or subgroup is clicked + if (curelem.Name != "RO_Root" && curelem.Name != "vlnGroup") + { + if ((Control.ModifierKeys & Keys.Control) == 0) + roTreeView_ClearAllMultiSelect(); + + roTreeView.SelectedNode.BackColor = MULTISELECTCOLOR; + ROsSelectedforMultiMove.Add(roTreeView.SelectedNode); + } + } + } } + //clear all multiselected items + protected void roTreeView_ClearAllMultiSelect() + { + foreach (TreeNode tn in ROsSelectedforMultiMove) + tn.BackColor = Color.White; + + ROsSelectedforMultiMove.Clear(); + } + private string CvtUserFldToFld(string fldname) { if (fldname.Length < 2) @@ -783,25 +869,25 @@ namespace ROEditor // Should the save option be available? // Just reflect the Save button state. - roTreeView.ContextMenu.MenuItems[4].Enabled = tbtnSave.Enabled; + roTreeView.ContextMenu.MenuItems[6].Enabled = tbtnSave.Enabled; menuROSave.Enabled = tbtnSave.Enabled; // Should the properties menu item be available? VlnXmlElement curelem = (VlnXmlElement) CurrentNode.Tag; if (curelem.Name == "vlnGroup") - roTreeView.ContextMenu.MenuItems[5].Enabled = true; + roTreeView.ContextMenu.MenuItems[7].Enabled = true; else - roTreeView.ContextMenu.MenuItems[5].Enabled = false; + roTreeView.ContextMenu.MenuItems[7].Enabled = false; // should delete menu item be available, i.e. top node NO! if (curelem.Name == "RO_Root") { - roTreeView.ContextMenu.MenuItems[3].Enabled = false; + roTreeView.ContextMenu.MenuItems[5].Enabled = false; roTreeView.ContextMenu.MenuItems[1].MenuItems[1].Enabled = false; } else { - roTreeView.ContextMenu.MenuItems[3].Enabled = true; + roTreeView.ContextMenu.MenuItems[5].Enabled = true; roTreeView.ContextMenu.MenuItems[1].MenuItems[1].Enabled = true; } @@ -1069,7 +1155,7 @@ namespace ROEditor tbtnSave.Enabled = true; tbtnRestore.Enabled = true; tbtnSaveAs.Enabled = true; - } + } menuROSave.Enabled = tbtnSave.Enabled; } @@ -1146,6 +1232,7 @@ namespace ROEditor { chldnd = new TreeNode(TheMenuTitle,ROIMAGE,ROIMAGE); chldnd.Tag = echild; + chldnd.Name = echild.GetAttribute("RecID"); enode.Nodes.Add(chldnd); } } @@ -1184,155 +1271,173 @@ namespace ROEditor /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); - this.imageListRoTree = new System.Windows.Forms.ImageList(this.components); - this.splitter1 = new System.Windows.Forms.Splitter(); - this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components); - this.menuRO = new System.Windows.Forms.MenuItem(); - this.menuRONew = new System.Windows.Forms.MenuItem(); - this.menuNewGroup = new System.Windows.Forms.MenuItem(); - this.menuNewRefObj = new System.Windows.Forms.MenuItem(); - this.menuItem1 = new System.Windows.Forms.MenuItem(); - this.menuROEdit = new System.Windows.Forms.MenuItem(); + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); + this.imageListRoTree = new System.Windows.Forms.ImageList(this.components); + this.splitter1 = new System.Windows.Forms.Splitter(); + this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components); + this.menuRO = new System.Windows.Forms.MenuItem(); + this.menuRONew = new System.Windows.Forms.MenuItem(); + this.menuNewGroup = new System.Windows.Forms.MenuItem(); + this.menuNewRefObj = new System.Windows.Forms.MenuItem(); + this.menuItem1 = new System.Windows.Forms.MenuItem(); + this.menuROEdit = new System.Windows.Forms.MenuItem(); + this.menuROCut = new System.Windows.Forms.MenuItem(); + this.menuROPaste = new System.Windows.Forms.MenuItem(); this.menuRODelete = new System.Windows.Forms.MenuItem(); - this.menuROSave = new System.Windows.Forms.MenuItem(); - this.menuROProperties = new System.Windows.Forms.MenuItem(); - this.menuItem10 = new System.Windows.Forms.MenuItem(); - this.menuROExit = new System.Windows.Forms.MenuItem(); - this.menuEdit = new System.Windows.Forms.MenuItem(); - this.menuEditUndo = new System.Windows.Forms.MenuItem(); - this.menuItem3 = new System.Windows.Forms.MenuItem(); - this.menuEditCut = new System.Windows.Forms.MenuItem(); - this.menuEditCopy = new System.Windows.Forms.MenuItem(); - this.menuEditPaste = new System.Windows.Forms.MenuItem(); - this.menuEditDelete = new System.Windows.Forms.MenuItem(); - this.menuItem5 = new System.Windows.Forms.MenuItem(); - this.menuEditSelAll = new System.Windows.Forms.MenuItem(); - this.menuTools = new System.Windows.Forms.MenuItem(); - this.menuToolsROFST = new System.Windows.Forms.MenuItem(); - this.menuHelp = new System.Windows.Forms.MenuItem(); - this.menuHelpAbout = new System.Windows.Forms.MenuItem(); - this.menuItem2 = new System.Windows.Forms.MenuItem(); - this.panel1 = new System.Windows.Forms.Panel(); - this.panel2 = new System.Windows.Forms.Panel(); - this.roTreeView = new System.Windows.Forms.TreeView(); - this.tbar = new System.Windows.Forms.ToolBar(); - this.tbtnSave = new System.Windows.Forms.ToolBarButton(); - this.tbtnCancel = new System.Windows.Forms.ToolBarButton(); - this.tbtnRestore = new System.Windows.Forms.ToolBarButton(); - this.tbtnSaveAs = new System.Windows.Forms.ToolBarButton(); - this.tbtnDuplicate = new System.Windows.Forms.ToolBarButton(); - this.tbtnZoom = new System.Windows.Forms.ToolBarButton(); - this.imageListToolBar = new System.Windows.Forms.ImageList(this.components); - this.lblDuplicateRO = new System.Windows.Forms.Label(); - this.panel1.SuspendLayout(); - this.SuspendLayout(); - // - // imageListRoTree - // - this.imageListRoTree.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListRoTree.ImageStream"))); - this.imageListRoTree.TransparentColor = System.Drawing.Color.Transparent; - this.imageListRoTree.Images.SetKeyName(0, ""); - this.imageListRoTree.Images.SetKeyName(1, ""); - // - // splitter1 - // - this.splitter1.Location = new System.Drawing.Point(220, 28); - this.splitter1.Name = "splitter1"; - this.splitter1.Size = new System.Drawing.Size(8, 591); - this.splitter1.TabIndex = 4; - this.splitter1.TabStop = false; - // - // mainMenu1 - // - this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { + this.menuROSave = new System.Windows.Forms.MenuItem(); + this.menuROProperties = new System.Windows.Forms.MenuItem(); + this.menuItem10 = new System.Windows.Forms.MenuItem(); + this.menuROExit = new System.Windows.Forms.MenuItem(); + this.menuEdit = new System.Windows.Forms.MenuItem(); + this.menuEditUndo = new System.Windows.Forms.MenuItem(); + this.menuItem3 = new System.Windows.Forms.MenuItem(); + this.menuEditCut = new System.Windows.Forms.MenuItem(); + this.menuEditCopy = new System.Windows.Forms.MenuItem(); + this.menuEditPaste = new System.Windows.Forms.MenuItem(); + this.menuEditDelete = new System.Windows.Forms.MenuItem(); + this.menuItem5 = new System.Windows.Forms.MenuItem(); + this.menuEditSelAll = new System.Windows.Forms.MenuItem(); + this.menuTools = new System.Windows.Forms.MenuItem(); + this.menuToolsROFST = new System.Windows.Forms.MenuItem(); + this.menuHelp = new System.Windows.Forms.MenuItem(); + this.menuHelpAbout = new System.Windows.Forms.MenuItem(); + this.menuItem2 = new System.Windows.Forms.MenuItem(); + this.panel1 = new System.Windows.Forms.Panel(); + this.panel2 = new System.Windows.Forms.Panel(); + this.roTreeView = new System.Windows.Forms.TreeView(); + this.tbar = new System.Windows.Forms.ToolBar(); + this.tbtnSave = new System.Windows.Forms.ToolBarButton(); + this.tbtnCancel = new System.Windows.Forms.ToolBarButton(); + this.tbtnRestore = new System.Windows.Forms.ToolBarButton(); + this.tbtnSaveAs = new System.Windows.Forms.ToolBarButton(); + this.tbtnDuplicate = new System.Windows.Forms.ToolBarButton(); + this.tbtnZoom = new System.Windows.Forms.ToolBarButton(); + this.imageListToolBar = new System.Windows.Forms.ImageList(this.components); + this.lblDuplicateRO = new System.Windows.Forms.Label(); + this.panel1.SuspendLayout(); + this.SuspendLayout(); + // + // imageListRoTree + // + this.imageListRoTree.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListRoTree.ImageStream"))); + this.imageListRoTree.TransparentColor = System.Drawing.Color.Transparent; + this.imageListRoTree.Images.SetKeyName(0, ""); + this.imageListRoTree.Images.SetKeyName(1, ""); + // + // splitter1 + // + this.splitter1.Location = new System.Drawing.Point(220, 28); + this.splitter1.Name = "splitter1"; + this.splitter1.Size = new System.Drawing.Size(8, 591); + this.splitter1.TabIndex = 4; + this.splitter1.TabStop = false; + // + // mainMenu1 + // + this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuRO, this.menuEdit, this.menuTools, this.menuHelp, this.menuItem2}); - // - // menuRO - // - this.menuRO.Index = 0; - this.menuRO.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { + // + // menuRO + // + this.menuRO.Index = 0; + this.menuRO.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuRONew, this.menuItem1, this.menuROEdit, + this.menuROCut, + this.menuROPaste, this.menuRODelete, this.menuROSave, this.menuROProperties, this.menuItem10, this.menuROExit}); - this.menuRO.Text = "RO"; - // - // menuRONew - // - this.menuRONew.Index = 0; - this.menuRONew.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { + this.menuRO.Text = "RO"; + // + // menuRONew + // + this.menuRONew.Index = 0; + this.menuRONew.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuNewGroup, this.menuNewRefObj}); - this.menuRONew.Text = "New ..."; + this.menuRONew.Text = "New ..."; + // + // menuNewGroup + // + this.menuNewGroup.Index = 0; + this.menuNewGroup.Text = "Group"; + this.menuNewGroup.Click += new System.EventHandler(this.menuNewGroup_Click); + // + // menuNewRefObj + // + this.menuNewRefObj.Index = 1; + this.menuNewRefObj.Text = "Referenced Object"; + this.menuNewRefObj.Click += new System.EventHandler(this.menuNewRefObj_Click); + // + // menuItem1 + // + this.menuItem1.Index = 1; + this.menuItem1.Text = "-"; + // + // menuROEdit + // + this.menuROEdit.Enabled = false; + this.menuROEdit.Index = 2; + this.menuROEdit.Text = "Edit"; + this.menuROEdit.Click += new System.EventHandler(this.menuROEdit_Click); // - // menuNewGroup + // menuROCut // - this.menuNewGroup.Index = 0; - this.menuNewGroup.Text = "Group"; - this.menuNewGroup.Click += new System.EventHandler(this.menuNewGroup_Click); + this.menuROCut.Enabled = false; + this.menuROCut.Index = 3; + this.menuROCut.Text = "Cut (Move RO)"; + this.menuROCut.Click += new System.EventHandler(this.menuROCut_Click); // - // menuNewRefObj + // menuROPaste // - this.menuNewRefObj.Index = 1; - this.menuNewRefObj.Text = "Referenced Object"; - this.menuNewRefObj.Click += new System.EventHandler(this.menuNewRefObj_Click); - // - // menuItem1 - // - this.menuItem1.Index = 1; - this.menuItem1.Text = "-"; - // - // menuROEdit - // - this.menuROEdit.Enabled = false; - this.menuROEdit.Index = 2; - this.menuROEdit.Text = "Edit"; - this.menuROEdit.Click += new System.EventHandler(this.menuROEdit_Click); + this.menuROPaste.Enabled = false; + this.menuROPaste.Index = 4; + this.menuROPaste.Text = "Paste (Move RO)"; + this.menuROPaste.Click += new System.EventHandler(this.menuROPaste_Click); // // menuRODelete // - this.menuRODelete.Index = 3; - this.menuRODelete.Text = "Delete"; - this.menuRODelete.Click += new System.EventHandler(this.menuRODelete_Click); - // - // menuROSave - // - this.menuROSave.Enabled = false; - this.menuROSave.Index = 4; - this.menuROSave.Text = "Save"; - this.menuROSave.Click += new System.EventHandler(this.menuROSave_Click); - // - // menuROProperties - // - this.menuROProperties.Index = 5; - this.menuROProperties.Text = "Properties"; - this.menuROProperties.Click += new System.EventHandler(this.menuROProperties_Click); - // - // menuItem10 - // - this.menuItem10.Index = 6; - this.menuItem10.Text = "-"; - // - // menuROExit - // - this.menuROExit.Index = 7; - this.menuROExit.Text = "Exit RO Editor"; - this.menuROExit.Click += new System.EventHandler(this.menuROExit_Click); - // - // menuEdit - // - this.menuEdit.Index = 1; - this.menuEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { + this.menuRODelete.Index = 5; + this.menuRODelete.Text = "Delete"; + this.menuRODelete.Click += new System.EventHandler(this.menuRODelete_Click); + // + // menuROSave + // + this.menuROSave.Enabled = false; + this.menuROSave.Index = 6; + this.menuROSave.Text = "Save"; + this.menuROSave.Click += new System.EventHandler(this.menuROSave_Click); + // + // menuROProperties + // + this.menuROProperties.Index = 7; + this.menuROProperties.Text = "Properties"; + this.menuROProperties.Click += new System.EventHandler(this.menuROProperties_Click); + // + // menuItem10 + // + this.menuItem10.Index = 8; + this.menuItem10.Text = "-"; + // + // menuROExit + // + this.menuROExit.Index = 9; + this.menuROExit.Text = "Exit RO Editor"; + this.menuROExit.Click += new System.EventHandler(this.menuROExit_Click); + // + // menuEdit + // + this.menuEdit.Index = 1; + this.menuEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuEditUndo, this.menuItem3, this.menuEditCut, @@ -1341,225 +1446,392 @@ namespace ROEditor this.menuEditDelete, this.menuItem5, this.menuEditSelAll}); - this.menuEdit.Text = "Edit"; - // - // menuEditUndo - // - this.menuEditUndo.Enabled = false; - this.menuEditUndo.Index = 0; - this.menuEditUndo.Text = "&Undo"; - this.menuEditUndo.Click += new System.EventHandler(this.menuEditUndo_Click); - // - // menuItem3 - // - this.menuItem3.Index = 1; - this.menuItem3.Text = "-"; - // - // menuEditCut - // - this.menuEditCut.Enabled = false; - this.menuEditCut.Index = 2; - this.menuEditCut.Text = "Cu&t"; - this.menuEditCut.Click += new System.EventHandler(this.menuEditCut_Click); - // - // menuEditCopy - // - this.menuEditCopy.Enabled = false; - this.menuEditCopy.Index = 3; - this.menuEditCopy.Text = "&Copy"; - this.menuEditCopy.Click += new System.EventHandler(this.menuEditCopy_Click); - // - // menuEditPaste - // - this.menuEditPaste.Enabled = false; - this.menuEditPaste.Index = 4; - this.menuEditPaste.Text = "&Paste"; - this.menuEditPaste.Click += new System.EventHandler(this.menuEditPaste_Click); - // - // menuEditDelete - // - this.menuEditDelete.Enabled = false; - this.menuEditDelete.Index = 5; - this.menuEditDelete.Text = "&Delete"; - this.menuEditDelete.Click += new System.EventHandler(this.menuEditDelete_Click); - // - // menuItem5 - // - this.menuItem5.Index = 6; - this.menuItem5.Text = "-"; - // - // menuEditSelAll - // - this.menuEditSelAll.Enabled = false; - this.menuEditSelAll.Index = 7; - this.menuEditSelAll.Text = "Select &All"; - this.menuEditSelAll.Click += new System.EventHandler(this.menuEditSelAll_Click); - // - // menuTools - // - this.menuTools.Index = 2; - this.menuTools.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { + this.menuEdit.Text = "Edit"; + // + // menuEditUndo + // + this.menuEditUndo.Enabled = false; + this.menuEditUndo.Index = 0; + this.menuEditUndo.Text = "&Undo"; + this.menuEditUndo.Click += new System.EventHandler(this.menuEditUndo_Click); + // + // menuItem3 + // + this.menuItem3.Index = 1; + this.menuItem3.Text = "-"; + // + // menuEditCut + // + this.menuEditCut.Enabled = false; + this.menuEditCut.Index = 2; + this.menuEditCut.Text = "Cu&t"; + this.menuEditCut.Click += new System.EventHandler(this.menuEditCut_Click); + // + // menuEditCopy + // + this.menuEditCopy.Enabled = false; + this.menuEditCopy.Index = 3; + this.menuEditCopy.Text = "&Copy"; + this.menuEditCopy.Click += new System.EventHandler(this.menuEditCopy_Click); + // + // menuEditPaste + // + this.menuEditPaste.Enabled = false; + this.menuEditPaste.Index = 4; + this.menuEditPaste.Text = "&Paste"; + this.menuEditPaste.Click += new System.EventHandler(this.menuEditPaste_Click); + // + // menuEditDelete + // + this.menuEditDelete.Enabled = false; + this.menuEditDelete.Index = 5; + this.menuEditDelete.Text = "&Delete"; + this.menuEditDelete.Click += new System.EventHandler(this.menuEditDelete_Click); + // + // menuItem5 + // + this.menuItem5.Index = 6; + this.menuItem5.Text = "-"; + // + // menuEditSelAll + // + this.menuEditSelAll.Enabled = false; + this.menuEditSelAll.Index = 7; + this.menuEditSelAll.Text = "Select &All"; + this.menuEditSelAll.Click += new System.EventHandler(this.menuEditSelAll_Click); + // + // menuTools + // + this.menuTools.Index = 2; + this.menuTools.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuToolsROFST}); - this.menuTools.Text = "Tools"; - // - // menuToolsROFST - // - this.menuToolsROFST.Index = 0; - this.menuToolsROFST.Text = "Create RO.FST"; - this.menuToolsROFST.Click += new System.EventHandler(this.menuToolsROFST_Click); - // - // menuHelp - // - this.menuHelp.Index = 3; - this.menuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { + this.menuTools.Text = "Tools"; + // + // menuToolsROFST + // + this.menuToolsROFST.Index = 0; + this.menuToolsROFST.Text = "Create RO.FST"; + this.menuToolsROFST.Click += new System.EventHandler(this.menuToolsROFST_Click); + // + // menuHelp + // + this.menuHelp.Index = 3; + this.menuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.menuHelpAbout}); - this.menuHelp.Text = "Help"; - // - // menuHelpAbout - // - this.menuHelpAbout.Index = 0; - this.menuHelpAbout.Text = "About"; - this.menuHelpAbout.Click += new System.EventHandler(this.menuHelpAbout_Click); - // - // menuItem2 - // - this.menuItem2.Index = 4; - this.menuItem2.Text = ""; - // - // panel1 - // - this.panel1.AutoScroll = true; - this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; - this.panel1.Controls.Add(this.panel2); - this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; - this.panel1.Location = new System.Drawing.Point(228, 28); - this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(710, 591); - this.panel1.TabIndex = 5; - // - // panel2 - // - this.panel2.AutoScroll = true; - this.panel2.Location = new System.Drawing.Point(0, 0); - this.panel2.Name = "panel2"; - this.panel2.Size = new System.Drawing.Size(235, 118); - this.panel2.TabIndex = 0; - this.panel2.Visible = false; - // - // roTreeView - // - this.roTreeView.Dock = System.Windows.Forms.DockStyle.Left; - this.roTreeView.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.roTreeView.ImageIndex = 0; - this.roTreeView.ImageList = this.imageListRoTree; - this.roTreeView.ItemHeight = 18; - this.roTreeView.Location = new System.Drawing.Point(0, 28); - this.roTreeView.Name = "roTreeView"; - this.roTreeView.SelectedImageIndex = 0; - this.roTreeView.Size = new System.Drawing.Size(220, 591); - this.roTreeView.TabIndex = 3; - this.roTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.roTreeView_AfterSelect_1); - // - // tbar - // - this.tbar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { + this.menuHelp.Text = "Help"; + // + // menuHelpAbout + // + this.menuHelpAbout.Index = 0; + this.menuHelpAbout.Text = "About"; + this.menuHelpAbout.Click += new System.EventHandler(this.menuHelpAbout_Click); + // + // menuItem2 + // + this.menuItem2.Index = 4; + this.menuItem2.Text = ""; + // + // panel1 + // + this.panel1.AutoScroll = true; + this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.panel1.Controls.Add(this.panel2); + this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel1.Location = new System.Drawing.Point(228, 28); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(752, 591); + this.panel1.TabIndex = 5; + // + // panel2 + // + this.panel2.AutoScroll = true; + this.panel2.Location = new System.Drawing.Point(0, 0); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(235, 118); + this.panel2.TabIndex = 0; + this.panel2.Visible = false; + // + // roTreeView + // + this.roTreeView.Dock = System.Windows.Forms.DockStyle.Left; + this.roTreeView.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.roTreeView.ImageIndex = 0; + this.roTreeView.ImageList = this.imageListRoTree; + this.roTreeView.ItemHeight = 18; + this.roTreeView.Location = new System.Drawing.Point(0, 28); + this.roTreeView.Name = "roTreeView"; + this.roTreeView.SelectedImageIndex = 0; + this.roTreeView.Size = new System.Drawing.Size(220, 591); + this.roTreeView.TabIndex = 3; + this.roTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.roTreeView_AfterSelect_1); + // + // tbar + // + this.tbar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbtnSave, this.tbtnCancel, this.tbtnRestore, this.tbtnSaveAs, this.tbtnDuplicate, this.tbtnZoom}); - this.tbar.DropDownArrows = true; - this.tbar.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.tbar.ImageList = this.imageListToolBar; - this.tbar.Location = new System.Drawing.Point(0, 0); - this.tbar.Name = "tbar"; - this.tbar.ShowToolTips = true; - this.tbar.Size = new System.Drawing.Size(938, 28); - this.tbar.TabIndex = 0; - this.tbar.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right; - this.tbar.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbar_OnClick); - // - // tbtnSave - // - this.tbtnSave.Enabled = false; - this.tbtnSave.ImageIndex = 0; - this.tbtnSave.Name = "tbtnSave"; - this.tbtnSave.Text = "Save"; - // - // tbtnCancel - // - this.tbtnCancel.Enabled = false; - this.tbtnCancel.ImageIndex = 1; - this.tbtnCancel.Name = "tbtnCancel"; - this.tbtnCancel.Text = "Cancel"; - // - // tbtnRestore - // - this.tbtnRestore.Enabled = false; - this.tbtnRestore.ImageIndex = 2; - this.tbtnRestore.Name = "tbtnRestore"; - this.tbtnRestore.Text = "Restore"; - // - // tbtnSaveAs - // - this.tbtnSaveAs.Enabled = false; - this.tbtnSaveAs.ImageIndex = 3; - this.tbtnSaveAs.Name = "tbtnSaveAs"; - this.tbtnSaveAs.Text = "Save As"; - // - // tbtnDuplicate - // - this.tbtnDuplicate.Enabled = false; - this.tbtnDuplicate.ImageIndex = 4; - this.tbtnDuplicate.Name = "tbtnDuplicate"; - this.tbtnDuplicate.Text = "Duplicate"; - // - // tbtnZoom - // - this.tbtnZoom.Enabled = false; - this.tbtnZoom.ImageIndex = 5; - this.tbtnZoom.Name = "tbtnZoom"; - this.tbtnZoom.Text = "Zoom"; - // - // imageListToolBar - // - this.imageListToolBar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListToolBar.ImageStream"))); - this.imageListToolBar.TransparentColor = System.Drawing.Color.Transparent; - this.imageListToolBar.Images.SetKeyName(0, ""); - this.imageListToolBar.Images.SetKeyName(1, ""); - this.imageListToolBar.Images.SetKeyName(2, ""); - this.imageListToolBar.Images.SetKeyName(3, ""); - this.imageListToolBar.Images.SetKeyName(4, ""); - this.imageListToolBar.Images.SetKeyName(5, ""); - // - // lblDuplicateRO - // - this.lblDuplicateRO.AutoSize = true; - this.lblDuplicateRO.ForeColor = System.Drawing.Color.Red; - this.lblDuplicateRO.Location = new System.Drawing.Point(491, 9); - this.lblDuplicateRO.Name = "lblDuplicateRO"; - this.lblDuplicateRO.Size = new System.Drawing.Size(139, 13); - this.lblDuplicateRO.TabIndex = 6; - this.lblDuplicateRO.Text = "Working With Duplicate RO"; - this.lblDuplicateRO.Visible = false; - // - // Form1 - // - this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); - this.ClientSize = new System.Drawing.Size(980, 619); - this.Controls.Add(this.lblDuplicateRO); - this.Controls.Add(this.panel1); - this.Controls.Add(this.splitter1); - this.Controls.Add(this.roTreeView); - this.Controls.Add(this.tbar); - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Menu = this.mainMenu1; - this.Name = "Form1"; - this.Text = "RO Edit"; - this.panel1.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); + this.tbar.DropDownArrows = true; + this.tbar.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.tbar.ImageList = this.imageListToolBar; + this.tbar.Location = new System.Drawing.Point(0, 0); + this.tbar.Name = "tbar"; + this.tbar.ShowToolTips = true; + this.tbar.Size = new System.Drawing.Size(980, 28); + this.tbar.TabIndex = 0; + this.tbar.TextAlign = System.Windows.Forms.ToolBarTextAlign.Right; + this.tbar.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbar_OnClick); + // + // tbtnSave + // + this.tbtnSave.Enabled = false; + this.tbtnSave.ImageIndex = 0; + this.tbtnSave.Name = "tbtnSave"; + this.tbtnSave.Text = "Save"; + // + // tbtnCancel + // + this.tbtnCancel.Enabled = false; + this.tbtnCancel.ImageIndex = 1; + this.tbtnCancel.Name = "tbtnCancel"; + this.tbtnCancel.Text = "Cancel"; + // + // tbtnRestore + // + this.tbtnRestore.Enabled = false; + this.tbtnRestore.ImageIndex = 2; + this.tbtnRestore.Name = "tbtnRestore"; + this.tbtnRestore.Text = "Restore"; + // + // tbtnSaveAs + // + this.tbtnSaveAs.Enabled = false; + this.tbtnSaveAs.ImageIndex = 3; + this.tbtnSaveAs.Name = "tbtnSaveAs"; + this.tbtnSaveAs.Text = "Save As"; + // + // tbtnDuplicate + // + this.tbtnDuplicate.Enabled = false; + this.tbtnDuplicate.ImageIndex = 4; + this.tbtnDuplicate.Name = "tbtnDuplicate"; + this.tbtnDuplicate.Text = "Duplicate"; + // + // tbtnZoom + // + this.tbtnZoom.Enabled = false; + this.tbtnZoom.ImageIndex = 5; + this.tbtnZoom.Name = "tbtnZoom"; + this.tbtnZoom.Text = "Zoom"; + // + // imageListToolBar + // + this.imageListToolBar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListToolBar.ImageStream"))); + this.imageListToolBar.TransparentColor = System.Drawing.Color.Transparent; + this.imageListToolBar.Images.SetKeyName(0, ""); + this.imageListToolBar.Images.SetKeyName(1, ""); + this.imageListToolBar.Images.SetKeyName(2, ""); + this.imageListToolBar.Images.SetKeyName(3, ""); + this.imageListToolBar.Images.SetKeyName(4, ""); + this.imageListToolBar.Images.SetKeyName(5, ""); + // + // lblDuplicateRO + // + this.lblDuplicateRO.AutoSize = true; + this.lblDuplicateRO.ForeColor = System.Drawing.Color.Red; + this.lblDuplicateRO.Location = new System.Drawing.Point(570, 9); + this.lblDuplicateRO.Name = "lblDuplicateRO"; + this.lblDuplicateRO.Size = new System.Drawing.Size(139, 13); + this.lblDuplicateRO.TabIndex = 6; + this.lblDuplicateRO.Text = "Working With Duplicate RO"; + this.lblDuplicateRO.Visible = false; + // + // Form1 + // + this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); + this.ClientSize = new System.Drawing.Size(980, 619); + this.Controls.Add(this.lblDuplicateRO); + this.Controls.Add(this.panel1); + this.Controls.Add(this.splitter1); + this.Controls.Add(this.roTreeView); + this.Controls.Add(this.tbar); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Menu = this.mainMenu1; + this.Name = "Form1"; + this.Text = "RO Edit"; + this.panel1.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + //Cut/Paste (Move ROs) added as part of CSM-C2024-027 / Part of 2024 PROMS Upgrades + private void menuROCut_Click(object sender, EventArgs e) + { + ROCutWasSelected = true; + + string msgstr = "It is recommended that after moving ROs, you create a FST an use it to update RO Values in PROMS to ensure RO Links properly move to the new location as well.\n\n Are you sure you wish to move the RO(s)?"; + + DialogResult AnswerYN = MessageBox.Show(msgstr, "RO Editor", MessageBoxButtons.YesNo); + if (AnswerYN != DialogResult.Yes) + ROCutWasSelected = false; + + } + + //part of CSM-C2024-027 / Part of 2024 PROMS Upgrades + //Paste Selected - will move individual ROs + private void menuROPaste_Click(object sender, EventArgs e) + { + if (ROCutWasSelected && ROsSelectedforMultiMove.Count == 0) + { + MessageBox.Show("Cut must be selected before able to Paste/Move a RO"); + return; + } + + foreach (TreeNode tnToCut in ROsSelectedforMultiMove) + { + VlnXmlElement ROtoCut = ((VlnXmlElement) tnToCut.Tag); + if (((VlnXmlElement)roTreeView.SelectedNode.Tag).GetAttribute("Table") != ROtoCut.GetAttribute("Table")) + { + MessageBox.Show("You can only move a RO within the same table."); + break; //exit foreach loop + } + string TheMenuTitle = ROtoCut.GetAttribute("MenuTitle"); + if (!string.IsNullOrEmpty(TheMenuTitle)) + { + TreeNode orig_parent = tnToCut.Parent; + if (moveRO(ROtoCut)) + { + //if move was successful, remove the moved item from it's previous parent + //so it will only have a parent of where it moved to + XmlNode node = ROtoCut.ParentNode; + node.RemoveChild(ROtoCut); + + if (orig_parent != null) + { + roTreeView.Nodes.Remove(tnToCut); + updateRoListView(orig_parent); + roTreeView.Refresh(); + } + } + } + } + + roTreeView_ClearAllMultiSelect(); + tbtnRestore.Enabled = false; + tbtnSave.Enabled = false; + tbtnCancel.Enabled = true; + tbtnSaveAs.Enabled = false; + tbtnDuplicate.Enabled = true; + duplicate_active = false; + ROCutWasSelected = false; + menuROCut.Enabled = false; + roTreeView.ContextMenu.MenuItems[3].Enabled = menuROCut.Enabled; + menuROPaste.Enabled = false; + roTreeView.ContextMenu.MenuItems[4].Enabled = menuROPaste.Enabled; + roTreeView.Refresh(); + + } + + //part of CSM-C2024-027 / Part of 2024 PROMS Upgrades + //Will move individual ROs + private bool moveRO(VlnXmlElement ROtoMove) + { + //making a copy into newro + //if everything is successful, once done + //will remove ROtoMove and keep the Clone with the changed position + //if any errors/issues, will remove the cloned newro and keep ROtoMove + VlnXmlElement newro = (VlnXmlElement)ROtoMove.Clone(); + VlnXmlElement placetomoveroto = (VlnXmlElement)roTreeView.SelectedNode.Tag; + string orig_title = ROtoMove.GetMenuString(ROtoMove.GetMenuValueTemplate("MenuItem"), false); + + //remove original link, and put it at new place in the menu + //set table to be new place that you are moving item to + //put at new place in menu + newro.SetAttribute("Table", placetomoveroto.GetAttribute("Table")); + newro.SetAttribute("ParentID", placetomoveroto.GetAttribute("RecID")); + placetomoveroto.AppendChild((XmlNode)newro); + + //Check that must have the same Fields in use + string dummy = ""; // need for RODB_GetFIeldsInUse call, won't be used. + ArrayList AvailList_ROtoMove = myrodb.RODB_GetFields(ROtoMove, (uint)RecordType.Schema); + IEnumerable InUseList_ROtoMove = myrodb.RODB_GetFieldsInUse(ROtoMove, AvailList_ROtoMove, "FieldsInUse", ref dummy, false).OfType(); + List flds_InUseList_ROtoMove = InUseList_ROtoMove.Select(x => x.GetFieldname).OrderBy(t => t).ToList(); + ArrayList AvailList_placetomoveroto = myrodb.RODB_GetFields(placetomoveroto, (uint)RecordType.Schema); + List flds_InUseList_placetomoveroto = myrodb.RODB_GetFieldsInUse(placetomoveroto, AvailList_placetomoveroto, "FieldsInUse", ref dummy, false).OfType().Select(x => x.GetFieldname).OrderBy(t => t).ToList(); + if (!Enumerable.SequenceEqual(flds_InUseList_ROtoMove, flds_InUseList_placetomoveroto)) + { + MessageBox.Show($"RO: {orig_title}. The fields in use must be the same between the item you are moving and where you are moving the item. The fields used in these values can be found under \"Properties => Referenced Object Definition\" of an RO Group. Cannot move.", "Problem moving RO item."); + placetomoveroto.RemoveChild(newro); + return false; + } + + //if duplicate Accessory Page Id, return with Error message + string acctmpl = newro.GetAccPageIDTemplate(); + string newacc = newro.GetAccPageIDString(acctmpl); + if (newacc == null) + { + MessageBox.Show($"RO: {orig_title}. Values for the fields used for the \"Accessory Pages Access\" are missing. The template required for the place this RO is moving to is: {acctmpl}", "Problem saving data"); + placetomoveroto.RemoveChild(newro); + + return false; + } + else if (myrodb.IsDuplicateAccPageID(newro, newacc)) + { + MessageBox.Show($"RO: {orig_title}. The fields used for the \"Accessory Pages Access\" values must be unique. The fields used in these values can be found under \"Properties\" of an RO Group. Cannot save.", "Problem saving data"); + placetomoveroto.RemoveChild(newro); + + return false; + } + + //if already an item in the menu with the same title, then return with Error message + string mnutmp = newro.GetMenuValueTemplate("MenuItem"); + string mnutitle = newro.GetMenuString(mnutmp, false); + if (newro.IsDuplicateMenuTitle(mnutitle)) + { + MessageBox.Show($"RO: {orig_title}. The fields used for the \"Menu\" values must be unique. The fields used in these values can be found under \"Properties\" of an RO Group. Cannot save.", "Problem saving data"); + placetomoveroto.RemoveChild(newro); + return false; + } + newro.SetAttribute("MenuTitle", mnutitle); + + //Check that required Fields have Values + ArrayList reqfields = newro.GetRequiredFields(); + foreach (string fldname in reqfields) + { + string fname_inxml = fldname.Split(new string[] { "\t" }, StringSplitOptions.None)[0]; + string fname = CvtFldToUserFld(fname_inxml); + if (!InUseList_ROtoMove.Any(x=> x.GetFieldname == CvtFldToUserFld(fldname.Split(new string[] { "\t" }, StringSplitOptions.None)[0])) || newro.ChildNodes.Cast().Any(x => x.Name == fname_inxml && x.InnerText.Length == 0)) + { + MessageBox.Show($"RO: {orig_title}. Required field \"{fname}\" is missing a value that is required. Please be sure RO has a value for this field before moving the RO.", "Problem saving data"); + placetomoveroto.RemoveChild(newro); + return false; + } + } + + bool success = myrodb.RODB_WriteRO(newro, true); + + //if successful, update the UI + if (success) + { + TreeNode newt = new TreeNode(mnutitle, ROIMAGE, ROIMAGE); + newt.Tag = newro; + newt.Name = newro.GetAttribute("RecID"); + roTreeView.SelectedNode.Nodes.Add(newt); + updateRoListView(newt.Parent); + roTreeView.Refresh(); + } + else + { + MessageBox.Show($"RO: {orig_title}. Unable to Move Item. An unexpected error occurred while moving the item, please contact Volian Support", "Problem saving moved item"); + placetomoveroto.RemoveChild(newro); + roTreeView.Refresh(); + } + + return success; } #endregion @@ -2301,7 +2573,7 @@ namespace ROEditor private void tbar_OnClick(object obj, ToolBarButtonClickEventArgs tbbcea) { ToolBarButton tbb = tbbcea.Button; - + // see which event should be called. if (tbb.Text == "Cancel") tbar_CancelClick(); @@ -2313,7 +2585,7 @@ namespace ROEditor tbar_DuplicateClick(); else if (tbb.Text == "Restore") tbar_RestoreClick(); - else if (tbb.Text == "Zoom"||tbb.Text == "View Image") + else if (tbb.Text == "Zoom" || tbb.Text == "View Image") ctlXMLEdit2.btnZoom_click(null, null); } @@ -2404,6 +2676,7 @@ namespace ROEditor int img = (myro.Name=="vlnGroup")?ROGROUPIMAGE:ROIMAGE; newt = new TreeNode(mnutitle,img,img); newt.Tag = myro; + newt.Name = myro.GetAttribute("RecID"); TreeNewparent.Nodes.Add(newt); } } @@ -2506,18 +2779,20 @@ namespace ROEditor if (acctmpl!=null)newro.SetAttribute("AccPageID", newro.GetAccPageIDString(acctmpl)); newro.SetAttribute("MenuTitle",mnutitle); newro.RemoveAttribute("RecID"); // get a new one. + success = myrodb.RODB_InsertRO(newro); - if (success == true) + if (success) { - int img = (newro.Name=="vlnGroup")?ROGROUPIMAGE:ROIMAGE; - TreeNode newt = new TreeNode(mnutitle,img,img); + int img = (newro.Name == "vlnGroup") ? ROGROUPIMAGE : ROIMAGE; + TreeNode newt = new TreeNode(mnutitle, img, img); newt.Tag = newro; + newt.Name = newro.GetAttribute("RecID"); roTreeView.SelectedNode.Parent.Nodes.Add(newt); roTreeView.SelectedNode.Tag = origro; LastSelectedNode = newt; //do this so that no prompt for data save on node select newt.TreeView.SelectedNode = newt; roTreeView.Refresh(); - tbtnRestore.Enabled=false; + tbtnRestore.Enabled = false; tbtnSave.Enabled = false; tbtnCancel.Enabled = true; tbtnSaveAs.Enabled = false; @@ -2525,10 +2800,10 @@ namespace ROEditor duplicate_active = false; } else - newro.SetAttribute("RecID",savrec); - + newro.SetAttribute("RecID", savrec); + newone = null; - } + } private void tbar_DuplicateClick() { diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.resx b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.resx index bb1d7760..5c3b99ac 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.resx +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.resx @@ -125,7 +125,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACE - CAAAAk1TRnQBSQFMAgEBAgEAARwBAAEcAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + CAAAAk1TRnQBSQFMAgEBAgEAASwBAAEsAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -175,7 +175,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAe - CwAAAk1TRnQBSQFMAgEBBgEAARwBAAEcAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + CwAAAk1TRnQBSQFMAgEBBgEAASwBAAEsAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA diff --git a/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs b/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs index c73b191b..a00c0b63 100644 --- a/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs +++ b/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs @@ -336,7 +336,7 @@ namespace RODBInterface public abstract bool RODB_GetChildData(VlnXmlElement node, bool CheckChildCount); public abstract bool IsDuplicateAccPageID(VlnXmlElement ro, string newacc); public abstract VlnXmlElement RODB_ReadRO(string tbl, string recid); - public abstract bool RODB_WriteRO(VlnXmlElement ro); + public abstract bool RODB_WriteRO(VlnXmlElement ro, bool movedRO = false); public abstract bool RODB_InsertRO(VlnXmlElement ro); public abstract ushort RODB_GetFieldType(VlnXmlElement elem, string TableName, string Fld); public abstract ArrayList RODB_GetFields(VlnXmlElement elem, uint rtype, bool refresh = false); @@ -2120,7 +2120,7 @@ namespace RODBInterface return retele; } - public override bool RODB_WriteRO(VlnXmlElement ro) + public override bool RODB_WriteRO(VlnXmlElement ro, bool movedRO = false) { bool success; if (ro.Name == "vlnGroup") @@ -2140,6 +2140,13 @@ namespace RODBInterface string dt = string.Format("{0:yyyyMMddHHmmss}", System.DateTime.Now); string xmlstr = GenerateXmlString(ro, false); string strUpdate = "UPDATE " + ro.GetAttribute("Table") + " SET Info = '" + xmlstr + "'"; + if (movedRO) + { + VlnXmlElement parent = (VlnXmlElement)ro.ParentNode; + ro.SetAttribute("ParentID", parent.GetAttribute("RecID")); + strUpdate += ", ParentID = '" + ro.GetAttribute("ParentID") + "'"; + } + strUpdate = strUpdate + ", ModDateTime = '" + dt + "', AccPageID = '" + wraccid + "' WHERE RecID='" + ro.GetAttribute("RecID") + "'"; try { @@ -2192,6 +2199,8 @@ namespace RODBInterface ro.SetAttribute("HasChild", "False"); if (ro.HasAttribute("AccPageID")) { + // Code is never reached, but this was noticed - this next line should likely be: + // strInsert = "INSERT INTO " + parent.GetAttribute("Table") + "( RecID, RecType, ParentID, AccPageID, ModDateTime, Info ) "; strInsert = "INSERT INTO " + parent.GetAttribute("Table") + "( RecID, RecType, ParentID, ModDateTime, AccPageID, Info ) "; strInsert = strInsert + " VALUES ('" + ro.GetAttribute("RecID") + "'," + (uint)RecordType.Group + ",'" + ro.GetAttribute("ParentID"); strInsert = strInsert + "','" + wraccid + "','" + dt + "','" + xmlstr + "');"; @@ -2396,7 +2405,7 @@ namespace RODBInterface Info = null; DBE.ReaderClose(); DBE.CommandDispose(); - return Info.Replace("'", "\'"); + return Info?.Replace("'", "\'"); } public override bool RODB_NewSchemaPiece(string recid, string parentid, string table, string schpiece, uint rtype) diff --git a/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs b/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs index 1e629bca..5e73dc07 100644 --- a/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs +++ b/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs @@ -1557,7 +1557,7 @@ namespace RODBInterface } return retele; } - public override bool RODB_WriteRO(VlnXmlElement ro) + public override bool RODB_WriteRO(VlnXmlElement ro, bool movedRO = false) { bool success; if (ro.Name == "vlnGroup") @@ -1589,6 +1589,13 @@ namespace RODBInterface command.Parameters.AddWithValue("@ModDateTime", dt); command.Parameters.AddWithValue("@AccPageID", wraccid); // B2020-003: set accpageid to correct value command.Parameters.AddWithValue("@RecID", ro.GetAttribute("RecID")); + if (movedRO) + { + VlnXmlElement parent = (VlnXmlElement)ro.ParentNode; + ro.SetAttribute("ParentID", parent.GetAttribute("RecID")); + command.Parameters.AddWithValue("@ParentID", ro.GetAttribute("ParentID")); + } + using (SqlDataReader reader = command.ExecuteReader()) { success = true; diff --git a/PROMS/VEPROMS User Interface/ROBuild.Sql b/PROMS/VEPROMS User Interface/ROBuild.Sql index df3f11af..02e04be7 100644 --- a/PROMS/VEPROMS User Interface/ROBuild.Sql +++ b/PROMS/VEPROMS User Interface/ROBuild.Sql @@ -674,7 +674,8 @@ CREATE PROCEDURE [dbo].[updateInfoAccidByRecid] @RecID char(8), @AccPageID char(32), @Info nvarchar(max), - @ModDateTime char(14) + @ModDateTime char(14), + @ParentID varchar(8) = NULL ) WITH EXECUTE AS OWNER AS @@ -684,7 +685,8 @@ BEGIN TRY -- Try Block SET [Info]=@Info, [ModDateTime]=@ModDateTime, - [AccPageID]=@AccPageID + [AccPageID]=@AccPageID, + [ParentID]=ISNULL(@ParentID, ParentID) WHERE [ROTable]=@ROTable AND [RecID]=@RecID IF @@ROWCOUNT = 0 BEGIN From 0c342fa18886016c3db7fc708babd8060c7ac3c9 Mon Sep 17 00:00:00 2001 From: mschill Date: Wed, 23 Oct 2024 14:07:20 -0400 Subject: [PATCH 21/32] B2024-085 Fix Object Reference Error when Getting Schema for a RO database in SQL After converting the Robinson ROs to SQL, upon changing an In Use field and clicking Continue, an "Error on Schema" message box displayed with an unhandled error exception. --- PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs b/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs index 5e73dc07..10ecf768 100644 --- a/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs +++ b/PROMS/ReferencedObjects/LibSource/RODBInterface/SqlRODB.cs @@ -1921,7 +1921,7 @@ namespace RODBInterface command.Parameters.AddWithValue("@RecID", Recid); using (SqlDataReader reader = command.ExecuteReader()) { - if (DBE.Read()) + if (reader.Read()) Info = reader.GetString(0); else Info = null; From cd963d01e44e66c9dcea3125471a152cd313d8f5 Mon Sep 17 00:00:00 2001 From: mschill Date: Wed, 23 Oct 2024 15:54:20 -0400 Subject: [PATCH 22/32] B2024-084 Fix Refresh Issue in RO Definitions. Modify an In Use field item, choose Continue, choose OK in the Text Definition Field. Hit Cancel in the next two windows, then open the RO Definition back up and the change is still there in the "In Use" column but not the Menu Value. Close the RO Editor and re-open and the change was now gone as it's supposed to be. --- .../ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs index c5498ffa..b603f083 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs @@ -220,6 +220,7 @@ namespace ROEditor return; } + string origFieldName = myrof.GetFieldname; myrof.SetFieldname(this.tbFieldName.Text); uint ftype=0; if (this.rbSingleLine.Checked == true) @@ -270,7 +271,9 @@ namespace ROEditor } myrof.SetFieldType(ftype); FieldTextFrm ftxt = new FieldTextFrm(myrof, myrodb, myelem, original_type, editlevel, origname, avlist, iulist); - ftxt.ShowDialog(); + if (ftxt.ShowDialog() == DialogResult.Cancel) + myrof.SetFieldname(origFieldName); + this.Close(); } #region Windows Form Designer generated code From 061bcfdc0f03efcaa9d7174bcd920e12abc9fe0b Mon Sep 17 00:00:00 2001 From: John Jenko Date: Wed, 23 Oct 2024 16:37:04 -0400 Subject: [PATCH 23/32] Just added space to a comment to force a new check-in of these Farely fomrat files --- PROMS/Formats/fmtall/FNPCASall.xml | Bin 67772 -> 67774 bytes PROMS/Formats/fmtall/FNPDEVall.xml | Bin 104206 -> 104208 bytes PROMS/Formats/fmtall/FNPEBKall.xml | Bin 90630 -> 90632 bytes PROMS/Formats/fmtall/FNPSAM1all.xml | Bin 139936 -> 139938 bytes PROMS/Formats/fmtall/FNP_00all.xml | Bin 82276 -> 82278 bytes PROMS/Formats/fmtall/FNP_01all.xml | Bin 79642 -> 79644 bytes PROMS/Formats/fmtall/FNPall.xml | Bin 172230 -> 172232 bytes PROMS/Formats/fmtall/fnpnmpall.xml | Bin 108708 -> 108710 bytes 8 files changed, 0 insertions(+), 0 deletions(-) diff --git a/PROMS/Formats/fmtall/FNPCASall.xml b/PROMS/Formats/fmtall/FNPCASall.xml index f415cb11f9e436f3f1c64e3cd6e04e2de6a76c31..2490b91694ac178a73955a7c7fbedc0ce923410d 100644 GIT binary patch delta 17 Ycmdlpk!9aRmI*P83XRcQqZt!906qo=2mk;8 delta 15 Wcmdltk!8bwUiILSyvSXhu#)06@k!{IEwh1wfaa-dUJyrk!I#UM7 From 779394ffd69d4c1c9bdeb5bbf15095b47446e4d1 Mon Sep 17 00:00:00 2001 From: mschill Date: Thu, 24 Oct 2024 07:43:00 -0400 Subject: [PATCH 24/32] C2024-030 RO Editor Enhancement to include table name / explain the scope of changing a field definition Local vs Generic When updating a field in a RO Definition, there is a prompt asking if changes should be Local or Generic --- Should change wording to explain that Local is local to that table (and include Table name in that wording) --- .../LibSource/RODBInterface/RODBInterface.cs | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs b/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs index a00c0b63..a720cd45 100644 --- a/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs +++ b/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs @@ -2680,8 +2680,8 @@ namespace RODBInterface // Generic definition, i.e. all Groups, and No updates only Local definition, i.e. just this Group Added a // Cancel button to Cancel from this dialog and return to previous dialog. Added more information to the // dialog to inform user of this - string dmsg = "Update Generic definition?\r\n\r\n Yes - updates Generic definitions, \r\n No - updates Local definitions, \r\n Cancel - returns to previous dialog." + - "\r\n\r\n 'Generic' updates definition in ALL groups that use the name\r\n 'Local' updates definition only in the selected group."; + string dmsg = $"Update Generic definition?\r\n\r\n Yes - updates Generic definitions, \r\n No - updates Local definitions, \r\n Cancel - returns to previous dialog." + + $"\r\n\r\n 'Generic' updates definition in ALL groups that use the name\r\n 'Local' updates definition only in the selected group, and will change the definition for all items in that table ({GetTopParentName(myelem)})."; System.Windows.Forms.DialogResult result = MessageBox.Show(dmsg, "Referenced Object Definition", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question); if (result == DialogResult.Cancel) return false; if (result == DialogResult.No) changegeneric = false; @@ -2786,6 +2786,19 @@ namespace RODBInterface return success; } + //CSM-C2024-030 + //Explain that Local is local to that table (and include Table name in wording displayed to user) + public string GetTopParentName(VlnXmlElement elem) + { + VlnXmlElement nodetocheck = elem; + while (nodetocheck.GetAttribute("ParentID") != "00000000" && nodetocheck.ParentNode != null) + { + nodetocheck = (VlnXmlElement) nodetocheck.ParentNode; + } + + return nodetocheck.GetAttribute("MenuTitle"); + } + public override XmlSchema RODB_GetGroupSchema(VlnXmlElement elem) { XmlSchema myschema; From fd0ea4404bac45e5777a4fd37acbf7979d271568 Mon Sep 17 00:00:00 2001 From: mschill Date: Fri, 25 Oct 2024 09:19:20 -0400 Subject: [PATCH 25/32] F2024-080 Add Initial Line/Ability to Disable to UI for South Texas --- PROMS/Formats/fmtall/HLPall.xml | Bin 84054 -> 85960 bytes PROMS/Formats/fmtall/OHLPall.xml | Bin 71110 -> 73066 bytes PROMS/Formats/fmtall/hlpfsgall.xml | Bin 105580 -> 107312 bytes .../VEPROMS.CSLA.Library/Config/StepConfig.cs | 19 + .../VEPROMS.CSLA.Library/Extension/ItemExt.cs | 97 +- .../Format/PlantFormat.cs | 11 + .../DisplayTags.Designer.cs | 1419 +++++++++-------- PROMS/Volian.Controls.Library/DisplayTags.cs | 67 +- 8 files changed, 888 insertions(+), 725 deletions(-) diff --git a/PROMS/Formats/fmtall/HLPall.xml b/PROMS/Formats/fmtall/HLPall.xml index 8aaad979e2e9c7785c65b5a4c7b5e34a270043fa..d4fa391981be60d7c1ec49538b69846f3f269bbe 100644 GIT binary patch delta 697 zcmcaMf%U|E)(waFRTUV588R618Oj+v8S)r18A^aSks*h{2T12Jq%ybw>Eg-u@#2gM zn-B6UOUf%S_yQFqGZXy`o}gK_`Gw9BCXfjr&SW2h7n7Sbg^*1KiU+ZCGJxUai)yNyOAI}@!5R|mD>m2J z%5hF^3RO_X>sp|T6&MsIH);x_nOw2?n426A$N)ux24K-H#mG6?&`FUM;xpY_@V)(waFC%0({Y!(m@lAQd(GG+1tLkWIAhJ1z+22X}Oh9Cw%2LH()UF0VV zh_X$Vb1B*Ep|y{3vWsR79z{i)wRD#-X}U8M0nI68C}7A0nv~99%b>(y0>lbHGjW+; zG&x{5%j5`yCzF?{2~Boz(3}2Go{?>{kC78MdFD;OXT`{|S;kI+bMh$ey diff --git a/PROMS/Formats/fmtall/OHLPall.xml b/PROMS/Formats/fmtall/OHLPall.xml index eb95d12bcffb4fa2e04be3b61e30f599b348c256..acb7e54e301657f932e24ea2ae08bc4d12311d82 100644 GIT binary patch delta 807 zcmX@Mn&s6lmJMPostOFj3>ggh4CM@-40#Nh3?)FE$dJR}1Elj9QW;!;bn)c)$*PkR zrm#&u$HukUge4_PUV*_Es4SVG2&mPSAqA{41SpcuV9TJy5I^}~O8sPs<$RO>Ww1@Y zP+l}yUjBnf^$hJ1z+22X}Oh9Cw%2LH(m ztK>H~#9J^;W=XBVCONqwzGCy8q$Nz6?hHjhy`>BV44FXP=?u0EN(?4ItN=6z!%UF2 z$!uvaCR_0GO}?;=j4Vut<6StU0jpHy0kV6bp2qOJZ-7a yq!feAW_=~hKv|8+|0aEdiK$KHVuZ1irr%+ie4#;Ra>Jai$sa0BHb0u%Q4aut0AZv6 diff --git a/PROMS/Formats/fmtall/hlpfsgall.xml b/PROMS/Formats/fmtall/hlpfsgall.xml index 123779de20b9148c3777743f85011a469ee33d58..9b2a83dcf467045e17f858ceedc0b2771ab3ec41 100644 GIT binary patch delta 688 zcmaE}gKfhxwhb}D+6oK`48aT;4EYS@44w>m44DiiK%B^s!{7s?^B7VYT!3^jP$X%( zVLYSgka{mq%+tuC^5uOemG5ZazO#t zWP>h`$#V)MChy=BnA}jtGWkPq$>anHw#`X}rx*zuqFKBXu5m#{(c}joSvL2SJYa?i zZeCDvg%QS?3{70k(HAH2qz!xl7zAhXQ^-Inm>)1TmzXQ#@TLuu;>yqSuQJ@d~4Y^ tlC3Y=EU+L-%unp*77i-2t=&E#xgl!rp)9E=N%@0IN&g8Ioo8r4uj1nwr0Eq E0BDDBUjP6A diff --git a/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs b/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs index 79433555..6cc65f87 100644 --- a/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs +++ b/PROMS/VEPROMS.CSLA.Library/Config/StepConfig.cs @@ -474,6 +474,25 @@ namespace VEPROMS.CSLA.Library OnPropertyChanged("Step_FixedTblForSrch"); } } + //CSM F2024-080: For South Texas - Ability to toggle off Initial Line + public bool Step_DisableInitialLine + { + get + { + string s = _Xp["Step", "DisableInitialLine"]; + + if (s == string.Empty) return false; + if (s == "True") return true; + return false; + } + set + { + string s = _Xp["Step", "DisableInitialLine"]; + if (value.ToString() == s) return; + _Xp["Step", "DisableInitialLine"] = value.ToString(); + OnPropertyChanged("Step_DisableInitialLine"); + } + } #region RO image sizing // if the RO image (figure) is resized, save it in the step config, not in the ROImageConfig. If stored in ROImageConfig // the size is set for ALL uses. diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs index 57949a02..f5ea88f6 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/ItemExt.cs @@ -4251,6 +4251,13 @@ namespace VEPROMS.CSLA.Library if (tbformat.Contains("{!.+?}")) tstr = tbformat.Replace("{!.+?}", " "); // Comanche Peak Indented Paragraph _MyTab.Text = tstr; + //CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line + if (!string.IsNullOrEmpty(FormatStepData.TabData.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled) + { + if (tstr.StartsWith(" ")) + tstr = tstr.Substring(1); + tstr = FormatStepData.TabData.MacroEditTag + tstr; + } _MyTab.CleanText = tstr; return; } @@ -4341,25 +4348,73 @@ namespace VEPROMS.CSLA.Library incSub = (ord + 1).ToString(); if (MyParent.MyTab.CleanText.Trim().EndsWith(")")) { - _MyTab.CleanText = MyParent.MyTab.CleanText.Trim() + "." + incSub; + //CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line + string tstr = MyParent.MyTab.CleanText.Trim() + "." + incSub; + if (!string.IsNullOrEmpty(FormatStepData.TabData.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled && !tstr.StartsWith("_")) + { + if (tstr.StartsWith(" ")) + tstr = tstr.Substring(1); + tstr = FormatStepData.TabData.MacroEditTag + tstr; + } + else if (IsInitialLineDisabled && tstr.StartsWith("_")) + tstr = tstr.Substring(1); + + _MyTab.CleanText = tstr; _MyTab.Text = _MyTab.CleanText; return; } if (MyParent.MyTab.CleanText.Contains(ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.IdentB)) { - _MyTab.CleanText = MyParent.MyTab.CleanText.Trim() + "." + incSub + " "; + //CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line + string tstr = MyParent.MyTab.CleanText.Trim() + "." + incSub + " "; + if (!string.IsNullOrEmpty(FormatStepData.TabData.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled && !tstr.StartsWith("_")) + { + if (tstr.StartsWith(" ")) + tstr = tstr.Substring(1); + tstr = FormatStepData.TabData.MacroEditTag + tstr; + } + else if(IsInitialLineDisabled && tstr.StartsWith("_")) + tstr = tstr.Substring(1); + + _MyTab.CleanText = tstr; _MyTab.Text = _MyTab.CleanText; return; } string tmprnotab = MyParent.MyTab.CleanText.Substring(0, MyParent.MyTab.CleanText.IndexOf(".") + 1) + incSub; - _MyTab.CleanText = tmprnotab.TrimStart(); - _MyTab.Text = tmprnotab.TrimStart(); + //CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line + tmprnotab = tmprnotab.TrimStart(); + if (!string.IsNullOrEmpty(FormatStepData.TabData.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled && !tmprnotab.StartsWith("_")) + { + if (tmprnotab.StartsWith(" ")) + tmprnotab = tmprnotab.Substring(1); + tmprnotab = FormatStepData.TabData.MacroEditTag + tmprnotab; + } + else if (IsInitialLineDisabled && tmprnotab.StartsWith("_")) + tmprnotab = tmprnotab.Substring(1); + + _MyTab.CleanText = tmprnotab; + _MyTab.Text = tmprnotab; return; } if ((((ItemInfo)ActiveParent).IsHigh && FormatStepData.NumberHighLevel) || ((!((ItemInfo)ActiveParent).IsHigh) && ((tbformat == null || tbformat == "") && (RNOLevel <= ColumnMode)))) { _MyTab.CleanText = ((ItemInfo)ActiveParent).MyTab.CleanText; _MyTab.Text = ((ItemInfo)ActiveParent).MyTab.Text; + //CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line + if (!string.IsNullOrEmpty(FormatStepData.TabData.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled && !_MyTab.CleanText.StartsWith("_")) + { + if (_MyTab.CleanText.StartsWith(" ")) + _MyTab.CleanText = _MyTab.CleanText.Substring(1); + _MyTab.CleanText = FormatStepData.TabData.MacroEditTag + _MyTab.CleanText; + } + if (IsInitialLineDisabled && _MyTab.CleanText.StartsWith("_")) + { + _MyTab.CleanText = _MyTab.CleanText.Substring(1); + } + if (IsInitialLineDisabled && _MyTab.Text.StartsWith("_")) + { + _MyTab.Text = _MyTab.Text.Substring(1); + } _MyTab.RNOTabWidthAdjust = ((ItemInfo)ActiveParent).FormatStepData.TabData.RNOAdjustTabSize ?? 0; if (((ItemInfo)ActiveParent).MyTab.Offset != 0) _MyTab.Offset = ((ItemInfo)ActiveParent).MyTab.Offset; if (((ItemInfo)ActiveParent).FormatStepData.TabData.RNOExcludeMacros) @@ -4716,6 +4771,15 @@ namespace VEPROMS.CSLA.Library cltext = cltext + " "; } } + //CSM F2024 - 080: For South Texas - if format contains initial line and it is not disabled, show an initial line + else if (macroindx == -1 && !string.IsNullOrEmpty(FormatStepData.TabData.MacroEditTag) && FormatStepData.TabData.MacroList != null && FormatStepData.TabData.MacroList.Count > 0 && !(this.IsRNOPart && FormatStepData.TabData.MacroList[0].NotInRNO) && !IsInitialLineDisabled) + { + if (cltext == null) + cltext = tbformat; + if (cltext.StartsWith(" ")) + cltext = cltext.Substring(1); + cltext = FormatStepData.TabData.MacroEditTag + cltext; + } } macroindx = tbformat.IndexOf("{!diamond1}"); if (macroindx > -1) //i found it @@ -5520,15 +5584,32 @@ namespace VEPROMS.CSLA.Library } if (count <= macro.Grouping) addToList = false; } + + //CSM F2024 - 080: For South Texas - if initial line is disabled for this step, do not add the macro + if (macro.Name.ToUpper() == "CHECKOFF" && ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.ShowInitialLineDisable && !string.IsNullOrEmpty(FormatStepData.TabData.MacroEditTag) && FormatStepData.TabData.MacroEditTag == "_" && IsInitialLineDisabled) + addToList = false; + if (addToList) tmp.Add(macro); } if (tmp.Count > 0) _MyMacros = tmp; } - #endregion - #region UseSmartTemplate - // TemplateIndex is for Calvert only: - private int _TemplateIndex = -2; // -2 not set; -1 not a template + //CSM F2024 - 080: For South Texas - check if initial line is disabled for this step + public bool IsInitialLineDisabled + { + get + { + if (!IsStep) return false; + StepConfig sc = MyConfig as StepConfig; + return sc.Step_DisableInitialLine; + } + } + + #endregion + #region UseSmartTemplate + + // TemplateIndex is for Calvert only: + private int _TemplateIndex = -2; // -2 not set; -1 not a template public int TemplateIndex { get diff --git a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs index 153cd329..61c3d0a9 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/PlantFormat.cs @@ -3175,6 +3175,17 @@ namespace VEPROMS.CSLA.Library return LazyLoad(ref _ChangeFontUpperCaseIinArial, "@ChangeFontUpperCaseIinArial"); } } + + // F2024-080 South Texas + // Used to show if "Initial Line Disable" checkbox should show in the DisplayTab + private LazyLoad _ShowInitialLineDisable; + public bool ShowInitialLineDisable + { + get + { + return LazyLoad(ref _ShowInitialLineDisable, "@ShowInitialLineDisable"); + } + } } #endregion - StepSectionData #region TextTypeValue diff --git a/PROMS/Volian.Controls.Library/DisplayTags.Designer.cs b/PROMS/Volian.Controls.Library/DisplayTags.Designer.cs index 67859ebd..ce365066 100644 --- a/PROMS/Volian.Controls.Library/DisplayTags.Designer.cs +++ b/PROMS/Volian.Controls.Library/DisplayTags.Designer.cs @@ -28,714 +28,736 @@ namespace Volian.Controls.Library /// private void InitializeComponent() { - this.groupPanelPaginate = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbPrefPageBreak = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbPageBreak = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbCAS = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cmbCheckoff = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.groupPanelCheckoff = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.groupPanelChgBar = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.tbChgID = new System.Windows.Forms.TextBox(); - this.lblChgId = new System.Windows.Forms.Label(); - this.rbChgBarOff = new System.Windows.Forms.RadioButton(); - this.rbChgBarOn = new System.Windows.Forms.RadioButton(); - this.groupPanelChgStepType = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.lblNoTypeChgReason = new DevComponents.DotNetBar.LabelX(); - this.cbChgAll = new System.Windows.Forms.CheckBox(); - this.listBoxStepTypes = new System.Windows.Forms.ListBox(); - this.superTooltipTags = new DevComponents.DotNetBar.SuperTooltip(); - this.cbPlaceKeeperCont = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbPlaceKeeper = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbIncludeInTOC = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbTCAS = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.groupPanelIncludeOn = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.groupPanelWcnTrnResp = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.tbRespons = new System.Windows.Forms.TextBox(); - this.groupPanelFigSize = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.btnFSrestore = new System.Windows.Forms.Button(); - this.trBarFS = new System.Windows.Forms.TrackBar(); - this.btnFsSav = new System.Windows.Forms.Button(); - this.tbFSHt = new System.Windows.Forms.TextBox(); - this.tbFSWd = new System.Windows.Forms.TextBox(); - this.lblFSHt = new System.Windows.Forms.Label(); - this.lblFSWidth = new System.Windows.Forms.Label(); - this.groupPanelPaginate.SuspendLayout(); - this.groupPanelCheckoff.SuspendLayout(); - this.groupPanelChgBar.SuspendLayout(); - this.groupPanelChgStepType.SuspendLayout(); - this.groupPanelIncludeOn.SuspendLayout(); - this.groupPanelWcnTrnResp.SuspendLayout(); - this.groupPanelFigSize.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.trBarFS)).BeginInit(); - this.SuspendLayout(); - // - // groupPanelPaginate - // - this.groupPanelPaginate.BackColor = System.Drawing.Color.Transparent; - this.groupPanelPaginate.CanvasColor = System.Drawing.SystemColors.Control; - this.groupPanelPaginate.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.groupPanelPaginate.Controls.Add(this.cbPrefPageBreak); - this.groupPanelPaginate.Controls.Add(this.cbPageBreak); - this.groupPanelPaginate.DisabledBackColor = System.Drawing.Color.Empty; - this.groupPanelPaginate.Dock = System.Windows.Forms.DockStyle.Top; - this.groupPanelPaginate.Location = new System.Drawing.Point(0, 330); - this.groupPanelPaginate.Margin = new System.Windows.Forms.Padding(2); - this.groupPanelPaginate.Name = "groupPanelPaginate"; - this.groupPanelPaginate.Size = new System.Drawing.Size(202, 58); - // - // - // - this.groupPanelPaginate.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.groupPanelPaginate.Style.BackColorGradientAngle = 90; - this.groupPanelPaginate.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.groupPanelPaginate.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelPaginate.Style.BorderBottomWidth = 1; - this.groupPanelPaginate.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.groupPanelPaginate.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelPaginate.Style.BorderLeftWidth = 1; - this.groupPanelPaginate.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelPaginate.Style.BorderRightWidth = 1; - this.groupPanelPaginate.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelPaginate.Style.BorderTopWidth = 1; - this.groupPanelPaginate.Style.CornerDiameter = 4; - this.groupPanelPaginate.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.groupPanelPaginate.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.groupPanelPaginate.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.groupPanelPaginate.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.groupPanelPaginate.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.groupPanelPaginate.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.groupPanelPaginate.TabIndex = 11; - this.groupPanelPaginate.Text = "Pagination"; - // - // cbPrefPageBreak - // - this.cbPrefPageBreak.AutoSize = true; - // - // - // - this.cbPrefPageBreak.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbPrefPageBreak.Location = new System.Drawing.Point(3, 19); - this.cbPrefPageBreak.Margin = new System.Windows.Forms.Padding(2); - this.cbPrefPageBreak.Name = "cbPrefPageBreak"; - this.cbPrefPageBreak.Size = new System.Drawing.Size(195, 15); - this.superTooltipTags.SetSuperTooltip(this.cbPrefPageBreak, new DevComponents.DotNetBar.SuperTooltipInfo("Preferred Page Break for Supplemental Info", "", "When set, starts this step at the top of a page.\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.cbPrefPageBreak.TabIndex = 1; - this.cbPrefPageBreak.Text = "Preferred Page Break (for Sup Info)"; - this.cbPrefPageBreak.CheckedChanged += new System.EventHandler(this.cbPrefPageBreak_CheckedChanged); - // - // cbPageBreak - // - this.cbPageBreak.AutoSize = true; - // - // - // - this.cbPageBreak.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbPageBreak.Location = new System.Drawing.Point(3, 2); - this.cbPageBreak.Margin = new System.Windows.Forms.Padding(2); - this.cbPageBreak.Name = "cbPageBreak"; - this.cbPageBreak.Size = new System.Drawing.Size(122, 15); - this.superTooltipTags.SetSuperTooltip(this.cbPageBreak, new DevComponents.DotNetBar.SuperTooltipInfo("Manual Page Break", "", "When set, starts this step at the top of a page.\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.cbPageBreak.TabIndex = 0; - this.cbPageBreak.Text = "Manual Page Break"; - this.cbPageBreak.CheckedChanged += new System.EventHandler(this.cbPageBreak_CheckedChanged); - // - // cbCAS - // - this.cbCAS.AutoSize = true; - this.cbCAS.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbCAS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbCAS.Location = new System.Drawing.Point(3, 1); - this.cbCAS.Margin = new System.Windows.Forms.Padding(2); - this.cbCAS.Name = "cbCAS"; - this.cbCAS.Size = new System.Drawing.Size(162, 15); - this.superTooltipTags.SetSuperTooltip(this.cbCAS, new DevComponents.DotNetBar.SuperTooltipInfo("Continuous Action Summary", "", "Include this in the Continuous Action Summary section\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.cbCAS.TabIndex = 1; - this.cbCAS.Text = "Continuous Action Summary"; - this.cbCAS.CheckedChanged += new System.EventHandler(this.cbCAS_CheckedChanged); - // - // cmbCheckoff - // - this.cmbCheckoff.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + this.cbCAS.TabIndex = 1; + this.cbCAS.Text = "Continuous Action Summary"; + this.cbCAS.CheckedChanged += new System.EventHandler(this.cbCAS_CheckedChanged); + // + // cmbCheckoff + // + this.cmbCheckoff.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.cmbCheckoff.DisplayMember = "Text"; - this.cmbCheckoff.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.cmbCheckoff.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.cmbCheckoff.FormattingEnabled = true; - this.cmbCheckoff.ItemHeight = 17; - this.cmbCheckoff.Location = new System.Drawing.Point(3, 17); - this.cmbCheckoff.Margin = new System.Windows.Forms.Padding(2); - this.cmbCheckoff.Name = "cmbCheckoff"; - this.cmbCheckoff.Size = new System.Drawing.Size(194, 23); - this.cmbCheckoff.TabIndex = 0; - this.cmbCheckoff.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cmbCheckoff.WatermarkText = "select signoff / checkoff"; - this.cmbCheckoff.SelectedIndexChanged += new System.EventHandler(this.cmbCheckoff_SelectedIndexChanged); - // - // groupPanelCheckoff - // - this.groupPanelCheckoff.CanvasColor = System.Drawing.SystemColors.Control; - this.groupPanelCheckoff.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.groupPanelCheckoff.Controls.Add(this.cmbCheckoff); - this.groupPanelCheckoff.DisabledBackColor = System.Drawing.Color.Empty; - this.groupPanelCheckoff.Dock = System.Windows.Forms.DockStyle.Top; - this.groupPanelCheckoff.Location = new System.Drawing.Point(0, 145); - this.groupPanelCheckoff.Margin = new System.Windows.Forms.Padding(2); - this.groupPanelCheckoff.Name = "groupPanelCheckoff"; - this.groupPanelCheckoff.Size = new System.Drawing.Size(202, 77); - // - // - // - this.groupPanelCheckoff.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.groupPanelCheckoff.Style.BackColorGradientAngle = 90; - this.groupPanelCheckoff.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.groupPanelCheckoff.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelCheckoff.Style.BorderBottomWidth = 1; - this.groupPanelCheckoff.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.groupPanelCheckoff.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelCheckoff.Style.BorderLeftWidth = 1; - this.groupPanelCheckoff.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelCheckoff.Style.BorderRightWidth = 1; - this.groupPanelCheckoff.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelCheckoff.Style.BorderTopWidth = 1; - this.groupPanelCheckoff.Style.CornerDiameter = 4; - this.groupPanelCheckoff.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.groupPanelCheckoff.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.groupPanelCheckoff.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.groupPanelCheckoff.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.groupPanelCheckoff.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.groupPanelCheckoff.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.groupPanelCheckoff.TabIndex = 8; - this.groupPanelCheckoff.Text = "Signoff / Checkoff"; - this.groupPanelCheckoff.VisibleChanged += new System.EventHandler(this.groupPanelCheckoff_VisibleChanged); - // - // groupPanelChgBar - // - this.groupPanelChgBar.BackColor = System.Drawing.Color.Transparent; - this.groupPanelChgBar.CanvasColor = System.Drawing.SystemColors.Control; - this.groupPanelChgBar.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.groupPanelChgBar.Controls.Add(this.tbChgID); - this.groupPanelChgBar.Controls.Add(this.lblChgId); - this.groupPanelChgBar.Controls.Add(this.rbChgBarOff); - this.groupPanelChgBar.Controls.Add(this.rbChgBarOn); - this.groupPanelChgBar.DisabledBackColor = System.Drawing.Color.Empty; - this.groupPanelChgBar.Dock = System.Windows.Forms.DockStyle.Top; - this.groupPanelChgBar.Location = new System.Drawing.Point(0, 222); - this.groupPanelChgBar.Margin = new System.Windows.Forms.Padding(2); - this.groupPanelChgBar.Name = "groupPanelChgBar"; - this.groupPanelChgBar.Size = new System.Drawing.Size(202, 108); - // - // - // - this.groupPanelChgBar.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.groupPanelChgBar.Style.BackColorGradientAngle = 90; - this.groupPanelChgBar.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.groupPanelChgBar.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelChgBar.Style.BorderBottomWidth = 1; - this.groupPanelChgBar.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.groupPanelChgBar.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelChgBar.Style.BorderLeftWidth = 1; - this.groupPanelChgBar.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelChgBar.Style.BorderRightWidth = 1; - this.groupPanelChgBar.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelChgBar.Style.BorderTopWidth = 1; - this.groupPanelChgBar.Style.CornerDiameter = 4; - this.groupPanelChgBar.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.groupPanelChgBar.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.groupPanelChgBar.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.groupPanelChgBar.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.groupPanelChgBar.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.groupPanelChgBar.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.superTooltipTags.SetSuperTooltip(this.groupPanelChgBar, new DevComponents.DotNetBar.SuperTooltipInfo("Change Bars", "", "This allows you to toggle the change bar on/off.\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.groupPanelChgBar.TabIndex = 18; - this.groupPanelChgBar.Text = "Change Bar"; - // - // tbChgID - // - this.tbChgID.Location = new System.Drawing.Point(0, 67); - this.tbChgID.Margin = new System.Windows.Forms.Padding(2); - this.tbChgID.Name = "tbChgID"; - this.tbChgID.Size = new System.Drawing.Size(81, 20); - this.tbChgID.TabIndex = 4; - this.tbChgID.TextChanged += new System.EventHandler(this.tbChgID_TextChanged); - // - // lblChgId - // - this.lblChgId.AutoSize = true; - this.lblChgId.Location = new System.Drawing.Point(0, 52); - this.lblChgId.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lblChgId.Name = "lblChgId"; - this.lblChgId.Size = new System.Drawing.Size(58, 13); - this.lblChgId.TabIndex = 3; - this.lblChgId.Text = "Change ID"; - // - // rbChgBarOff - // - this.rbChgBarOff.AutoSize = true; - this.rbChgBarOff.Location = new System.Drawing.Point(0, 26); - this.rbChgBarOff.Margin = new System.Windows.Forms.Padding(2); - this.rbChgBarOff.Name = "rbChgBarOff"; - this.rbChgBarOff.Size = new System.Drawing.Size(45, 17); - this.superTooltipTags.SetSuperTooltip(this.rbChgBarOff, new DevComponents.DotNetBar.SuperTooltipInfo("Change Bar OFF", "", "Turn change bar off. Note that \'OVERRIDE\' will turn off a change bar even though" + + this.cmbCheckoff.DisplayMember = "Text"; + this.cmbCheckoff.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.cmbCheckoff.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.cmbCheckoff.FormattingEnabled = true; + this.cmbCheckoff.ItemHeight = 17; + this.cmbCheckoff.Location = new System.Drawing.Point(3, 17); + this.cmbCheckoff.Margin = new System.Windows.Forms.Padding(2); + this.cmbCheckoff.Name = "cmbCheckoff"; + this.cmbCheckoff.Size = new System.Drawing.Size(194, 23); + this.cmbCheckoff.TabIndex = 0; + this.cmbCheckoff.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cmbCheckoff.WatermarkText = "select signoff / checkoff"; + this.cmbCheckoff.SelectedIndexChanged += new System.EventHandler(this.cmbCheckoff_SelectedIndexChanged); + // + // groupPanelCheckoff + // + this.groupPanelCheckoff.CanvasColor = System.Drawing.SystemColors.Control; + this.groupPanelCheckoff.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.groupPanelCheckoff.Controls.Add(this.cbInitialLine); + this.groupPanelCheckoff.Controls.Add(this.cmbCheckoff); + this.groupPanelCheckoff.DisabledBackColor = System.Drawing.Color.Empty; + this.groupPanelCheckoff.Dock = System.Windows.Forms.DockStyle.Top; + this.groupPanelCheckoff.Location = new System.Drawing.Point(0, 145); + this.groupPanelCheckoff.Margin = new System.Windows.Forms.Padding(2); + this.groupPanelCheckoff.Name = "groupPanelCheckoff"; + this.groupPanelCheckoff.Size = new System.Drawing.Size(202, 86); + // + // + // + this.groupPanelCheckoff.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.groupPanelCheckoff.Style.BackColorGradientAngle = 90; + this.groupPanelCheckoff.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.groupPanelCheckoff.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelCheckoff.Style.BorderBottomWidth = 1; + this.groupPanelCheckoff.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.groupPanelCheckoff.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelCheckoff.Style.BorderLeftWidth = 1; + this.groupPanelCheckoff.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelCheckoff.Style.BorderRightWidth = 1; + this.groupPanelCheckoff.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelCheckoff.Style.BorderTopWidth = 1; + this.groupPanelCheckoff.Style.CornerDiameter = 4; + this.groupPanelCheckoff.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.groupPanelCheckoff.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.groupPanelCheckoff.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.groupPanelCheckoff.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.groupPanelCheckoff.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.groupPanelCheckoff.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.groupPanelCheckoff.TabIndex = 8; + this.groupPanelCheckoff.Text = "Signoff / Checkoff"; + this.groupPanelCheckoff.VisibleChanged += new System.EventHandler(this.groupPanelCheckoff_VisibleChanged); + // + // cbInitialLine + // + this.cbInitialLine.AutoSize = true; + this.cbInitialLine.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbInitialLine.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbInitialLine.Location = new System.Drawing.Point(3, 44); + this.cbInitialLine.Margin = new System.Windows.Forms.Padding(2); + this.cbInitialLine.Name = "cbInitialLine"; + this.cbInitialLine.Size = new System.Drawing.Size(112, 15); + this.superTooltipTags.SetSuperTooltip(this.cbInitialLine, new DevComponents.DotNetBar.SuperTooltipInfo("Manual Page Break", "", "When set, starts this step at the top of a page.\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); + this.cbInitialLine.TabIndex = 1; + this.cbInitialLine.Text = "Disable Initial Line"; + this.cbInitialLine.Visible = false; + this.cbInitialLine.CheckedChanged += new System.EventHandler(this.cbInitialLine_CheckedChanged); + // + // groupPanelChgBar + // + this.groupPanelChgBar.BackColor = System.Drawing.Color.Transparent; + this.groupPanelChgBar.CanvasColor = System.Drawing.SystemColors.Control; + this.groupPanelChgBar.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.groupPanelChgBar.Controls.Add(this.tbChgID); + this.groupPanelChgBar.Controls.Add(this.lblChgId); + this.groupPanelChgBar.Controls.Add(this.rbChgBarOff); + this.groupPanelChgBar.Controls.Add(this.rbChgBarOn); + this.groupPanelChgBar.DisabledBackColor = System.Drawing.Color.Empty; + this.groupPanelChgBar.Dock = System.Windows.Forms.DockStyle.Top; + this.groupPanelChgBar.Location = new System.Drawing.Point(0, 231); + this.groupPanelChgBar.Margin = new System.Windows.Forms.Padding(2); + this.groupPanelChgBar.Name = "groupPanelChgBar"; + this.groupPanelChgBar.Size = new System.Drawing.Size(202, 108); + // + // + // + this.groupPanelChgBar.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.groupPanelChgBar.Style.BackColorGradientAngle = 90; + this.groupPanelChgBar.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.groupPanelChgBar.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelChgBar.Style.BorderBottomWidth = 1; + this.groupPanelChgBar.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.groupPanelChgBar.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelChgBar.Style.BorderLeftWidth = 1; + this.groupPanelChgBar.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelChgBar.Style.BorderRightWidth = 1; + this.groupPanelChgBar.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelChgBar.Style.BorderTopWidth = 1; + this.groupPanelChgBar.Style.CornerDiameter = 4; + this.groupPanelChgBar.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.groupPanelChgBar.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.groupPanelChgBar.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.groupPanelChgBar.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.groupPanelChgBar.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.groupPanelChgBar.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.superTooltipTags.SetSuperTooltip(this.groupPanelChgBar, new DevComponents.DotNetBar.SuperTooltipInfo("Change Bars", "", "This allows you to toggle the change bar on/off.\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); + this.groupPanelChgBar.TabIndex = 18; + this.groupPanelChgBar.Text = "Change Bar"; + // + // tbChgID + // + this.tbChgID.Location = new System.Drawing.Point(0, 67); + this.tbChgID.Margin = new System.Windows.Forms.Padding(2); + this.tbChgID.Name = "tbChgID"; + this.tbChgID.Size = new System.Drawing.Size(81, 20); + this.tbChgID.TabIndex = 4; + this.tbChgID.TextChanged += new System.EventHandler(this.tbChgID_TextChanged); + // + // lblChgId + // + this.lblChgId.AutoSize = true; + this.lblChgId.Location = new System.Drawing.Point(0, 52); + this.lblChgId.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblChgId.Name = "lblChgId"; + this.lblChgId.Size = new System.Drawing.Size(58, 13); + this.lblChgId.TabIndex = 3; + this.lblChgId.Text = "Change ID"; + // + // rbChgBarOff + // + this.rbChgBarOff.AutoSize = true; + this.rbChgBarOff.Location = new System.Drawing.Point(0, 26); + this.rbChgBarOff.Margin = new System.Windows.Forms.Padding(2); + this.rbChgBarOff.Name = "rbChgBarOff"; + this.rbChgBarOff.Size = new System.Drawing.Size(45, 17); + this.superTooltipTags.SetSuperTooltip(this.rbChgBarOff, new DevComponents.DotNetBar.SuperTooltipInfo("Change Bar OFF", "", "Turn change bar off. Note that \'OVERRIDE\' will turn off a change bar even though" + " text is changed.\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.rbChgBarOff.TabIndex = 2; - this.rbChgBarOff.TabStop = true; - this.rbChgBarOff.Text = "OFF"; - this.rbChgBarOff.UseVisualStyleBackColor = true; - this.rbChgBarOff.CheckedChanged += new System.EventHandler(this.rbChgBarOvrRideOff_CheckedChanged); - // - // rbChgBarOn - // - this.rbChgBarOn.AutoSize = true; - this.rbChgBarOn.Location = new System.Drawing.Point(0, 4); - this.rbChgBarOn.Margin = new System.Windows.Forms.Padding(2); - this.rbChgBarOn.Name = "rbChgBarOn"; - this.rbChgBarOn.Size = new System.Drawing.Size(41, 17); - this.superTooltipTags.SetSuperTooltip(this.rbChgBarOn, new DevComponents.DotNetBar.SuperTooltipInfo("Change Bar ON", "", "Add a change bar on this step\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.rbChgBarOn.TabIndex = 1; - this.rbChgBarOn.TabStop = true; - this.rbChgBarOn.Text = "ON"; - this.rbChgBarOn.UseVisualStyleBackColor = true; - this.rbChgBarOn.CheckedChanged += new System.EventHandler(this.rbChgBarOvrRideOn_CheckedChanged); - // - // groupPanelChgStepType - // - this.groupPanelChgStepType.BackColor = System.Drawing.SystemColors.Control; - this.groupPanelChgStepType.CanvasColor = System.Drawing.SystemColors.Control; - this.groupPanelChgStepType.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.groupPanelChgStepType.Controls.Add(this.lblNoTypeChgReason); - this.groupPanelChgStepType.Controls.Add(this.cbChgAll); - this.groupPanelChgStepType.Controls.Add(this.listBoxStepTypes); - this.groupPanelChgStepType.DisabledBackColor = System.Drawing.Color.Empty; - this.groupPanelChgStepType.Dock = System.Windows.Forms.DockStyle.Top; - this.groupPanelChgStepType.Location = new System.Drawing.Point(0, 0); - this.groupPanelChgStepType.Margin = new System.Windows.Forms.Padding(2); - this.groupPanelChgStepType.Name = "groupPanelChgStepType"; - this.groupPanelChgStepType.Size = new System.Drawing.Size(202, 145); - // - // - // - this.groupPanelChgStepType.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.groupPanelChgStepType.Style.BackColorGradientAngle = 90; - this.groupPanelChgStepType.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.groupPanelChgStepType.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelChgStepType.Style.BorderBottomWidth = 1; - this.groupPanelChgStepType.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.groupPanelChgStepType.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelChgStepType.Style.BorderLeftWidth = 1; - this.groupPanelChgStepType.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelChgStepType.Style.BorderRightWidth = 1; - this.groupPanelChgStepType.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelChgStepType.Style.BorderTopWidth = 1; - this.groupPanelChgStepType.Style.CornerDiameter = 4; - this.groupPanelChgStepType.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.groupPanelChgStepType.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.groupPanelChgStepType.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.groupPanelChgStepType.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.groupPanelChgStepType.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.groupPanelChgStepType.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.groupPanelChgStepType.TabIndex = 19; - this.groupPanelChgStepType.Text = "Change Step Type"; - // - // lblNoTypeChgReason - // - this.lblNoTypeChgReason.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + this.rbChgBarOff.TabIndex = 2; + this.rbChgBarOff.TabStop = true; + this.rbChgBarOff.Text = "OFF"; + this.rbChgBarOff.UseVisualStyleBackColor = true; + this.rbChgBarOff.CheckedChanged += new System.EventHandler(this.rbChgBarOvrRideOff_CheckedChanged); + // + // rbChgBarOn + // + this.rbChgBarOn.AutoSize = true; + this.rbChgBarOn.Location = new System.Drawing.Point(0, 4); + this.rbChgBarOn.Margin = new System.Windows.Forms.Padding(2); + this.rbChgBarOn.Name = "rbChgBarOn"; + this.rbChgBarOn.Size = new System.Drawing.Size(41, 17); + this.superTooltipTags.SetSuperTooltip(this.rbChgBarOn, new DevComponents.DotNetBar.SuperTooltipInfo("Change Bar ON", "", "Add a change bar on this step\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); + this.rbChgBarOn.TabIndex = 1; + this.rbChgBarOn.TabStop = true; + this.rbChgBarOn.Text = "ON"; + this.rbChgBarOn.UseVisualStyleBackColor = true; + this.rbChgBarOn.CheckedChanged += new System.EventHandler(this.rbChgBarOvrRideOn_CheckedChanged); + // + // groupPanelChgStepType + // + this.groupPanelChgStepType.BackColor = System.Drawing.SystemColors.Control; + this.groupPanelChgStepType.CanvasColor = System.Drawing.SystemColors.Control; + this.groupPanelChgStepType.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.groupPanelChgStepType.Controls.Add(this.lblNoTypeChgReason); + this.groupPanelChgStepType.Controls.Add(this.cbChgAll); + this.groupPanelChgStepType.Controls.Add(this.listBoxStepTypes); + this.groupPanelChgStepType.DisabledBackColor = System.Drawing.Color.Empty; + this.groupPanelChgStepType.Dock = System.Windows.Forms.DockStyle.Top; + this.groupPanelChgStepType.Location = new System.Drawing.Point(0, 0); + this.groupPanelChgStepType.Margin = new System.Windows.Forms.Padding(2); + this.groupPanelChgStepType.Name = "groupPanelChgStepType"; + this.groupPanelChgStepType.Size = new System.Drawing.Size(202, 145); + // + // + // + this.groupPanelChgStepType.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.groupPanelChgStepType.Style.BackColorGradientAngle = 90; + this.groupPanelChgStepType.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.groupPanelChgStepType.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelChgStepType.Style.BorderBottomWidth = 1; + this.groupPanelChgStepType.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.groupPanelChgStepType.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelChgStepType.Style.BorderLeftWidth = 1; + this.groupPanelChgStepType.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelChgStepType.Style.BorderRightWidth = 1; + this.groupPanelChgStepType.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelChgStepType.Style.BorderTopWidth = 1; + this.groupPanelChgStepType.Style.CornerDiameter = 4; + this.groupPanelChgStepType.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.groupPanelChgStepType.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.groupPanelChgStepType.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.groupPanelChgStepType.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.groupPanelChgStepType.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.groupPanelChgStepType.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.groupPanelChgStepType.TabIndex = 19; + this.groupPanelChgStepType.Text = "Change Step Type"; + // + // lblNoTypeChgReason + // + this.lblNoTypeChgReason.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.lblNoTypeChgReason.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.lblNoTypeChgReason.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.lblNoTypeChgReason.ForeColor = System.Drawing.Color.Red; - this.lblNoTypeChgReason.Location = new System.Drawing.Point(2, 28); - this.lblNoTypeChgReason.Margin = new System.Windows.Forms.Padding(2); - this.lblNoTypeChgReason.Name = "lblNoTypeChgReason"; - this.lblNoTypeChgReason.Size = new System.Drawing.Size(194, 96); - this.lblNoTypeChgReason.TabIndex = 5; - // - // cbChgAll - // - this.cbChgAll.AutoSize = true; - this.cbChgAll.BackColor = System.Drawing.Color.Transparent; - this.cbChgAll.Location = new System.Drawing.Point(2, 6); - this.cbChgAll.Margin = new System.Windows.Forms.Padding(2); - this.cbChgAll.Name = "cbChgAll"; - this.cbChgAll.Size = new System.Drawing.Size(119, 17); - this.superTooltipTags.SetSuperTooltip(this.cbChgAll, new DevComponents.DotNetBar.SuperTooltipInfo("Change Step Type - All At Level", "", "When checked, all steps at the level of current step will have their step type ch" + + this.lblNoTypeChgReason.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.lblNoTypeChgReason.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.lblNoTypeChgReason.ForeColor = System.Drawing.Color.Red; + this.lblNoTypeChgReason.Location = new System.Drawing.Point(2, 28); + this.lblNoTypeChgReason.Margin = new System.Windows.Forms.Padding(2); + this.lblNoTypeChgReason.Name = "lblNoTypeChgReason"; + this.lblNoTypeChgReason.Size = new System.Drawing.Size(194, 96); + this.lblNoTypeChgReason.TabIndex = 5; + // + // cbChgAll + // + this.cbChgAll.AutoSize = true; + this.cbChgAll.BackColor = System.Drawing.Color.Transparent; + this.cbChgAll.Location = new System.Drawing.Point(2, 6); + this.cbChgAll.Margin = new System.Windows.Forms.Padding(2); + this.cbChgAll.Name = "cbChgAll"; + this.cbChgAll.Size = new System.Drawing.Size(119, 17); + this.superTooltipTags.SetSuperTooltip(this.cbChgAll, new DevComponents.DotNetBar.SuperTooltipInfo("Change Step Type - All At Level", "", "When checked, all steps at the level of current step will have their step type ch" + "anged to the selected type in list below...", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.cbChgAll.TabIndex = 4; - this.cbChgAll.Text = "Change All At Level"; - this.cbChgAll.UseVisualStyleBackColor = false; - // - // listBoxStepTypes - // - this.listBoxStepTypes.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + this.cbChgAll.TabIndex = 4; + this.cbChgAll.Text = "Change All At Level"; + this.cbChgAll.UseVisualStyleBackColor = false; + // + // listBoxStepTypes + // + this.listBoxStepTypes.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.listBoxStepTypes.FormattingEnabled = true; - this.listBoxStepTypes.Location = new System.Drawing.Point(2, 28); - this.listBoxStepTypes.Margin = new System.Windows.Forms.Padding(2); - this.listBoxStepTypes.Name = "listBoxStepTypes"; - this.listBoxStepTypes.Size = new System.Drawing.Size(194, 95); - this.superTooltipTags.SetSuperTooltip(this.listBoxStepTypes, new DevComponents.DotNetBar.SuperTooltipInfo("Possible Step Types", "", "This list allows change of type showing all selections of any possible step type " + + this.listBoxStepTypes.FormattingEnabled = true; + this.listBoxStepTypes.Location = new System.Drawing.Point(2, 28); + this.listBoxStepTypes.Margin = new System.Windows.Forms.Padding(2); + this.listBoxStepTypes.Name = "listBoxStepTypes"; + this.listBoxStepTypes.Size = new System.Drawing.Size(194, 95); + this.superTooltipTags.SetSuperTooltip(this.listBoxStepTypes, new DevComponents.DotNetBar.SuperTooltipInfo("Possible Step Types", "", "This list allows change of type showing all selections of any possible step type " + "for the current step.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.listBoxStepTypes.TabIndex = 3; - this.listBoxStepTypes.SelectedIndexChanged += new System.EventHandler(this.listBoxStepTypes_SelectedIndexChanged); - // - // superTooltipTags - // - this.superTooltipTags.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray); - this.superTooltipTags.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; - // - // cbPlaceKeeperCont - // - this.cbPlaceKeeperCont.AutoSize = true; - this.cbPlaceKeeperCont.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbPlaceKeeperCont.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbPlaceKeeperCont.Location = new System.Drawing.Point(3, 58); - this.cbPlaceKeeperCont.Margin = new System.Windows.Forms.Padding(2); - this.cbPlaceKeeperCont.Name = "cbPlaceKeeperCont"; - this.cbPlaceKeeperCont.Size = new System.Drawing.Size(158, 15); - this.superTooltipTags.SetSuperTooltip(this.cbPlaceKeeperCont, new DevComponents.DotNetBar.SuperTooltipInfo("Placekeeper Continuous Action", "", "Include this on the Placekeeper marked as a Continuous Action\r\n\r\nkeyboard command" + + this.listBoxStepTypes.TabIndex = 3; + this.listBoxStepTypes.SelectedIndexChanged += new System.EventHandler(this.listBoxStepTypes_SelectedIndexChanged); + // + // superTooltipTags + // + this.superTooltipTags.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray); + this.superTooltipTags.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; + // + // cbPlaceKeeperCont + // + this.cbPlaceKeeperCont.AutoSize = true; + this.cbPlaceKeeperCont.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbPlaceKeeperCont.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbPlaceKeeperCont.Location = new System.Drawing.Point(3, 58); + this.cbPlaceKeeperCont.Margin = new System.Windows.Forms.Padding(2); + this.cbPlaceKeeperCont.Name = "cbPlaceKeeperCont"; + this.cbPlaceKeeperCont.Size = new System.Drawing.Size(158, 15); + this.superTooltipTags.SetSuperTooltip(this.cbPlaceKeeperCont, new DevComponents.DotNetBar.SuperTooltipInfo("Placekeeper Continuous Action", "", "Include this on the Placekeeper marked as a Continuous Action\r\n\r\nkeyboard command" + ": ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.cbPlaceKeeperCont.TabIndex = 1; - this.cbPlaceKeeperCont.Text = "Placekeeper as Cont Action"; - this.cbPlaceKeeperCont.CheckedChanged += new System.EventHandler(this.cbPlaceKeeperCont_CheckedChanged); - // - // cbPlaceKeeper - // - this.cbPlaceKeeper.AutoSize = true; - this.cbPlaceKeeper.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbPlaceKeeper.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbPlaceKeeper.Location = new System.Drawing.Point(3, 39); - this.cbPlaceKeeper.Margin = new System.Windows.Forms.Padding(2); - this.cbPlaceKeeper.Name = "cbPlaceKeeper"; - this.cbPlaceKeeper.Size = new System.Drawing.Size(84, 15); - this.superTooltipTags.SetSuperTooltip(this.cbPlaceKeeper, new DevComponents.DotNetBar.SuperTooltipInfo("Placekeeper", "", "Include this on the Placekeeper\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.cbPlaceKeeper.TabIndex = 1; - this.cbPlaceKeeper.Text = "Placekeeper"; - this.cbPlaceKeeper.CheckedChanged += new System.EventHandler(this.cbPlacekeeper_CheckedChanged); - // - // cbIncludeInTOC - // - this.cbIncludeInTOC.AutoSize = true; - this.cbIncludeInTOC.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbIncludeInTOC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbIncludeInTOC.Location = new System.Drawing.Point(2, 78); - this.cbIncludeInTOC.Margin = new System.Windows.Forms.Padding(2); - this.cbIncludeInTOC.Name = "cbIncludeInTOC"; - this.cbIncludeInTOC.Size = new System.Drawing.Size(109, 15); - this.cbIncludeInTOC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; - this.superTooltipTags.SetSuperTooltip(this.cbIncludeInTOC, new DevComponents.DotNetBar.SuperTooltipInfo("High Level Step in TOC", "", "Include this in the auto generated Table of Contents.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.cbIncludeInTOC.TabIndex = 2; - this.cbIncludeInTOC.Text = "Table of Contents"; - this.cbIncludeInTOC.CheckedChanged += new System.EventHandler(this.cbIncludeInTOC_CheckedChanged); - // - // cbTCAS - // - this.cbTCAS.AutoSize = true; - this.cbTCAS.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbTCAS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbTCAS.Location = new System.Drawing.Point(3, 20); - this.cbTCAS.Margin = new System.Windows.Forms.Padding(2); - this.cbTCAS.Name = "cbTCAS"; - this.cbTCAS.Size = new System.Drawing.Size(167, 15); - this.superTooltipTags.SetSuperTooltip(this.cbTCAS, new DevComponents.DotNetBar.SuperTooltipInfo("Continuous Action Summary", "", "Include this in the Continuous Action Summary section\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); + this.cbPlaceKeeper.TabIndex = 1; + this.cbPlaceKeeper.Text = "Placekeeper"; + this.cbPlaceKeeper.CheckedChanged += new System.EventHandler(this.cbPlacekeeper_CheckedChanged); + // + // cbIncludeInTOC + // + this.cbIncludeInTOC.AutoSize = true; + this.cbIncludeInTOC.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbIncludeInTOC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbIncludeInTOC.Location = new System.Drawing.Point(2, 78); + this.cbIncludeInTOC.Margin = new System.Windows.Forms.Padding(2); + this.cbIncludeInTOC.Name = "cbIncludeInTOC"; + this.cbIncludeInTOC.Size = new System.Drawing.Size(109, 15); + this.cbIncludeInTOC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; + this.superTooltipTags.SetSuperTooltip(this.cbIncludeInTOC, new DevComponents.DotNetBar.SuperTooltipInfo("High Level Step in TOC", "", "Include this in the auto generated Table of Contents.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); + this.cbIncludeInTOC.TabIndex = 2; + this.cbIncludeInTOC.Text = "Table of Contents"; + this.cbIncludeInTOC.CheckedChanged += new System.EventHandler(this.cbIncludeInTOC_CheckedChanged); + // + // cbTCAS + // + this.cbTCAS.AutoSize = true; + this.cbTCAS.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbTCAS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbTCAS.Location = new System.Drawing.Point(3, 20); + this.cbTCAS.Margin = new System.Windows.Forms.Padding(2); + this.cbTCAS.Name = "cbTCAS"; + this.cbTCAS.Size = new System.Drawing.Size(167, 15); + this.superTooltipTags.SetSuperTooltip(this.cbTCAS, new DevComponents.DotNetBar.SuperTooltipInfo("Continuous Action Summary", "", "Include this in the Continuous Action Summary section\r\n\r\nkeyboard command: ", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.cbTCAS.TabIndex = 3; - this.cbTCAS.Text = "Time Critical Action Summary"; - this.cbTCAS.CheckedChanged += new System.EventHandler(this.cbTCAS_CheckedChanged); - // - // groupPanelIncludeOn - // - this.groupPanelIncludeOn.BackColor = System.Drawing.Color.Transparent; - this.groupPanelIncludeOn.CanvasColor = System.Drawing.SystemColors.Control; - this.groupPanelIncludeOn.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.groupPanelIncludeOn.Controls.Add(this.cbTCAS); - this.groupPanelIncludeOn.Controls.Add(this.cbIncludeInTOC); - this.groupPanelIncludeOn.Controls.Add(this.cbPlaceKeeperCont); - this.groupPanelIncludeOn.Controls.Add(this.cbPlaceKeeper); - this.groupPanelIncludeOn.Controls.Add(this.cbCAS); - this.groupPanelIncludeOn.DisabledBackColor = System.Drawing.Color.Empty; - this.groupPanelIncludeOn.Dock = System.Windows.Forms.DockStyle.Top; - this.groupPanelIncludeOn.Location = new System.Drawing.Point(0, 388); - this.groupPanelIncludeOn.Margin = new System.Windows.Forms.Padding(2); - this.groupPanelIncludeOn.Name = "groupPanelIncludeOn"; - this.groupPanelIncludeOn.Size = new System.Drawing.Size(202, 121); - // - // - // - this.groupPanelIncludeOn.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.groupPanelIncludeOn.Style.BackColorGradientAngle = 90; - this.groupPanelIncludeOn.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.groupPanelIncludeOn.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelIncludeOn.Style.BorderBottomWidth = 1; - this.groupPanelIncludeOn.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.groupPanelIncludeOn.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelIncludeOn.Style.BorderLeftWidth = 1; - this.groupPanelIncludeOn.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelIncludeOn.Style.BorderRightWidth = 1; - this.groupPanelIncludeOn.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelIncludeOn.Style.BorderTopWidth = 1; - this.groupPanelIncludeOn.Style.CornerDiameter = 4; - this.groupPanelIncludeOn.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.groupPanelIncludeOn.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.groupPanelIncludeOn.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.groupPanelIncludeOn.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.groupPanelIncludeOn.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.groupPanelIncludeOn.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.groupPanelIncludeOn.TabIndex = 17; - this.groupPanelIncludeOn.Text = "Include On"; - // - // groupPanelWcnTrnResp - // - this.groupPanelWcnTrnResp.BackColor = System.Drawing.Color.Transparent; - this.groupPanelWcnTrnResp.CanvasColor = System.Drawing.SystemColors.Control; - this.groupPanelWcnTrnResp.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.groupPanelWcnTrnResp.Controls.Add(this.tbRespons); - this.groupPanelWcnTrnResp.DisabledBackColor = System.Drawing.Color.Empty; - this.groupPanelWcnTrnResp.Dock = System.Windows.Forms.DockStyle.Top; - this.groupPanelWcnTrnResp.Location = new System.Drawing.Point(0, 509); - this.groupPanelWcnTrnResp.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.groupPanelWcnTrnResp.Name = "groupPanelWcnTrnResp"; - this.groupPanelWcnTrnResp.Size = new System.Drawing.Size(202, 138); - // - // - // - this.groupPanelWcnTrnResp.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.groupPanelWcnTrnResp.Style.BackColorGradientAngle = 90; - this.groupPanelWcnTrnResp.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.groupPanelWcnTrnResp.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelWcnTrnResp.Style.BorderBottomWidth = 1; - this.groupPanelWcnTrnResp.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.groupPanelWcnTrnResp.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelWcnTrnResp.Style.BorderLeftWidth = 1; - this.groupPanelWcnTrnResp.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelWcnTrnResp.Style.BorderRightWidth = 1; - this.groupPanelWcnTrnResp.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelWcnTrnResp.Style.BorderTopWidth = 1; - this.groupPanelWcnTrnResp.Style.CornerDiameter = 4; - this.groupPanelWcnTrnResp.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.groupPanelWcnTrnResp.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.groupPanelWcnTrnResp.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.groupPanelWcnTrnResp.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.groupPanelWcnTrnResp.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.groupPanelWcnTrnResp.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.groupPanelWcnTrnResp.TabIndex = 20; - this.groupPanelWcnTrnResp.Text = "Responsibilty"; - // - // tbRespons - // - this.tbRespons.Location = new System.Drawing.Point(27, 16); - this.tbRespons.Multiline = true; - this.tbRespons.Name = "tbRespons"; - this.tbRespons.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; - this.tbRespons.Size = new System.Drawing.Size(164, 81); - this.tbRespons.TabIndex = 0; - this.tbRespons.Leave += new System.EventHandler(this.tbRespons_Leave); - // - // groupPanelFigSize - // - this.groupPanelFigSize.BackColor = System.Drawing.Color.Transparent; - this.groupPanelFigSize.CanvasColor = System.Drawing.SystemColors.Control; - this.groupPanelFigSize.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.groupPanelFigSize.Controls.Add(this.btnFSrestore); - this.groupPanelFigSize.Controls.Add(this.trBarFS); - this.groupPanelFigSize.Controls.Add(this.btnFsSav); - this.groupPanelFigSize.Controls.Add(this.tbFSHt); - this.groupPanelFigSize.Controls.Add(this.tbFSWd); - this.groupPanelFigSize.Controls.Add(this.lblFSHt); - this.groupPanelFigSize.Controls.Add(this.lblFSWidth); - this.groupPanelFigSize.DisabledBackColor = System.Drawing.Color.Empty; - this.groupPanelFigSize.Dock = System.Windows.Forms.DockStyle.Top; - this.groupPanelFigSize.Location = new System.Drawing.Point(0, 647); - this.groupPanelFigSize.Margin = new System.Windows.Forms.Padding(2); - this.groupPanelFigSize.Name = "groupPanelFigSize"; - this.groupPanelFigSize.Size = new System.Drawing.Size(202, 135); - // - // - // - this.groupPanelFigSize.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.groupPanelFigSize.Style.BackColorGradientAngle = 90; - this.groupPanelFigSize.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.groupPanelFigSize.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelFigSize.Style.BorderBottomWidth = 1; - this.groupPanelFigSize.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.groupPanelFigSize.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelFigSize.Style.BorderLeftWidth = 1; - this.groupPanelFigSize.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelFigSize.Style.BorderRightWidth = 1; - this.groupPanelFigSize.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.groupPanelFigSize.Style.BorderTopWidth = 1; - this.groupPanelFigSize.Style.CornerDiameter = 4; - this.groupPanelFigSize.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.groupPanelFigSize.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.groupPanelFigSize.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.groupPanelFigSize.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.groupPanelFigSize.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.groupPanelFigSize.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.groupPanelFigSize.TabIndex = 21; - this.groupPanelFigSize.Text = "Image Size"; - // - // btnFSrestore - // - this.btnFSrestore.Location = new System.Drawing.Point(112, 27); - this.btnFSrestore.Margin = new System.Windows.Forms.Padding(2); - this.btnFSrestore.Name = "btnFSrestore"; - this.btnFSrestore.Size = new System.Drawing.Size(54, 20); - this.btnFSrestore.TabIndex = 6; - this.btnFSrestore.Text = "Restore"; - this.btnFSrestore.UseVisualStyleBackColor = true; - this.btnFSrestore.Click += new System.EventHandler(this.btnFSrestore_Click); - // - // trBarFS - // - this.trBarFS.Location = new System.Drawing.Point(11, 58); - this.trBarFS.Margin = new System.Windows.Forms.Padding(2); - this.trBarFS.Maximum = 700; - this.trBarFS.Minimum = 50; - this.trBarFS.Name = "trBarFS"; - this.trBarFS.Size = new System.Drawing.Size(129, 45); - this.trBarFS.TabIndex = 5; - this.trBarFS.Value = 50; - this.trBarFS.Scroll += new System.EventHandler(this.trBarFS_Scroll); - // - // btnFsSav - // - this.btnFsSav.Location = new System.Drawing.Point(112, 2); - this.btnFsSav.Margin = new System.Windows.Forms.Padding(2); - this.btnFsSav.Name = "btnFsSav"; - this.btnFsSav.Size = new System.Drawing.Size(46, 20); - this.btnFsSav.TabIndex = 4; - this.btnFsSav.Text = "Set"; - this.btnFsSav.UseVisualStyleBackColor = true; - this.btnFsSav.Click += new System.EventHandler(this.btnFsSav_Click); - // - // tbFSHt - // - this.tbFSHt.Enabled = false; - this.tbFSHt.Location = new System.Drawing.Point(42, 27); - this.tbFSHt.Margin = new System.Windows.Forms.Padding(2); - this.tbFSHt.Name = "tbFSHt"; - this.tbFSHt.Size = new System.Drawing.Size(60, 20); - this.tbFSHt.TabIndex = 3; - // - // tbFSWd - // - this.tbFSWd.Location = new System.Drawing.Point(42, 4); - this.tbFSWd.Margin = new System.Windows.Forms.Padding(2); - this.tbFSWd.Name = "tbFSWd"; - this.tbFSWd.Size = new System.Drawing.Size(60, 20); - this.tbFSWd.TabIndex = 2; - this.tbFSWd.Leave += new System.EventHandler(this.tbFSWd_Leave); - // - // lblFSHt - // - this.lblFSHt.AutoSize = true; - this.lblFSHt.Location = new System.Drawing.Point(4, 28); - this.lblFSHt.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lblFSHt.Name = "lblFSHt"; - this.lblFSHt.Size = new System.Drawing.Size(38, 13); - this.lblFSHt.TabIndex = 1; - this.lblFSHt.Text = "Height"; - // - // lblFSWidth - // - this.lblFSWidth.AutoSize = true; - this.lblFSWidth.Location = new System.Drawing.Point(4, 6); - this.lblFSWidth.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); - this.lblFSWidth.Name = "lblFSWidth"; - this.lblFSWidth.Size = new System.Drawing.Size(35, 13); - this.lblFSWidth.TabIndex = 0; - this.lblFSWidth.Text = "Width"; - // - // DisplayTags - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.groupPanelFigSize); - this.Controls.Add(this.groupPanelWcnTrnResp); - this.Controls.Add(this.groupPanelIncludeOn); - this.Controls.Add(this.groupPanelPaginate); - this.Controls.Add(this.groupPanelChgBar); - this.Controls.Add(this.groupPanelCheckoff); - this.Controls.Add(this.groupPanelChgStepType); - this.Margin = new System.Windows.Forms.Padding(2); - this.Name = "DisplayTags"; - this.Size = new System.Drawing.Size(202, 802); - this.groupPanelPaginate.ResumeLayout(false); - this.groupPanelPaginate.PerformLayout(); - this.groupPanelCheckoff.ResumeLayout(false); - this.groupPanelChgBar.ResumeLayout(false); - this.groupPanelChgBar.PerformLayout(); - this.groupPanelChgStepType.ResumeLayout(false); - this.groupPanelChgStepType.PerformLayout(); - this.groupPanelIncludeOn.ResumeLayout(false); - this.groupPanelIncludeOn.PerformLayout(); - this.groupPanelWcnTrnResp.ResumeLayout(false); - this.groupPanelWcnTrnResp.PerformLayout(); - this.groupPanelFigSize.ResumeLayout(false); - this.groupPanelFigSize.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.trBarFS)).EndInit(); - this.ResumeLayout(false); + this.cbTCAS.TabIndex = 3; + this.cbTCAS.Text = "Time Critical Action Summary"; + this.cbTCAS.CheckedChanged += new System.EventHandler(this.cbTCAS_CheckedChanged); + // + // groupPanelIncludeOn + // + this.groupPanelIncludeOn.BackColor = System.Drawing.Color.Transparent; + this.groupPanelIncludeOn.CanvasColor = System.Drawing.SystemColors.Control; + this.groupPanelIncludeOn.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.groupPanelIncludeOn.Controls.Add(this.cbTCAS); + this.groupPanelIncludeOn.Controls.Add(this.cbIncludeInTOC); + this.groupPanelIncludeOn.Controls.Add(this.cbPlaceKeeperCont); + this.groupPanelIncludeOn.Controls.Add(this.cbPlaceKeeper); + this.groupPanelIncludeOn.Controls.Add(this.cbCAS); + this.groupPanelIncludeOn.DisabledBackColor = System.Drawing.Color.Empty; + this.groupPanelIncludeOn.Dock = System.Windows.Forms.DockStyle.Top; + this.groupPanelIncludeOn.Location = new System.Drawing.Point(0, 397); + this.groupPanelIncludeOn.Margin = new System.Windows.Forms.Padding(2); + this.groupPanelIncludeOn.Name = "groupPanelIncludeOn"; + this.groupPanelIncludeOn.Size = new System.Drawing.Size(202, 121); + // + // + // + this.groupPanelIncludeOn.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.groupPanelIncludeOn.Style.BackColorGradientAngle = 90; + this.groupPanelIncludeOn.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.groupPanelIncludeOn.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelIncludeOn.Style.BorderBottomWidth = 1; + this.groupPanelIncludeOn.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.groupPanelIncludeOn.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelIncludeOn.Style.BorderLeftWidth = 1; + this.groupPanelIncludeOn.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelIncludeOn.Style.BorderRightWidth = 1; + this.groupPanelIncludeOn.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelIncludeOn.Style.BorderTopWidth = 1; + this.groupPanelIncludeOn.Style.CornerDiameter = 4; + this.groupPanelIncludeOn.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.groupPanelIncludeOn.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.groupPanelIncludeOn.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.groupPanelIncludeOn.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.groupPanelIncludeOn.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.groupPanelIncludeOn.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.groupPanelIncludeOn.TabIndex = 17; + this.groupPanelIncludeOn.Text = "Include On"; + // + // groupPanelWcnTrnResp + // + this.groupPanelWcnTrnResp.BackColor = System.Drawing.Color.Transparent; + this.groupPanelWcnTrnResp.CanvasColor = System.Drawing.SystemColors.Control; + this.groupPanelWcnTrnResp.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.groupPanelWcnTrnResp.Controls.Add(this.tbRespons); + this.groupPanelWcnTrnResp.DisabledBackColor = System.Drawing.Color.Empty; + this.groupPanelWcnTrnResp.Dock = System.Windows.Forms.DockStyle.Top; + this.groupPanelWcnTrnResp.Location = new System.Drawing.Point(0, 518); + this.groupPanelWcnTrnResp.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); + this.groupPanelWcnTrnResp.Name = "groupPanelWcnTrnResp"; + this.groupPanelWcnTrnResp.Size = new System.Drawing.Size(202, 138); + // + // + // + this.groupPanelWcnTrnResp.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.groupPanelWcnTrnResp.Style.BackColorGradientAngle = 90; + this.groupPanelWcnTrnResp.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.groupPanelWcnTrnResp.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelWcnTrnResp.Style.BorderBottomWidth = 1; + this.groupPanelWcnTrnResp.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.groupPanelWcnTrnResp.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelWcnTrnResp.Style.BorderLeftWidth = 1; + this.groupPanelWcnTrnResp.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelWcnTrnResp.Style.BorderRightWidth = 1; + this.groupPanelWcnTrnResp.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelWcnTrnResp.Style.BorderTopWidth = 1; + this.groupPanelWcnTrnResp.Style.CornerDiameter = 4; + this.groupPanelWcnTrnResp.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.groupPanelWcnTrnResp.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.groupPanelWcnTrnResp.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.groupPanelWcnTrnResp.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.groupPanelWcnTrnResp.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.groupPanelWcnTrnResp.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.groupPanelWcnTrnResp.TabIndex = 20; + this.groupPanelWcnTrnResp.Text = "Responsibilty"; + // + // tbRespons + // + this.tbRespons.Location = new System.Drawing.Point(27, 16); + this.tbRespons.Multiline = true; + this.tbRespons.Name = "tbRespons"; + this.tbRespons.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; + this.tbRespons.Size = new System.Drawing.Size(164, 81); + this.tbRespons.TabIndex = 0; + this.tbRespons.Leave += new System.EventHandler(this.tbRespons_Leave); + // + // groupPanelFigSize + // + this.groupPanelFigSize.BackColor = System.Drawing.Color.Transparent; + this.groupPanelFigSize.CanvasColor = System.Drawing.SystemColors.Control; + this.groupPanelFigSize.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.groupPanelFigSize.Controls.Add(this.btnFSrestore); + this.groupPanelFigSize.Controls.Add(this.trBarFS); + this.groupPanelFigSize.Controls.Add(this.btnFsSav); + this.groupPanelFigSize.Controls.Add(this.tbFSHt); + this.groupPanelFigSize.Controls.Add(this.tbFSWd); + this.groupPanelFigSize.Controls.Add(this.lblFSHt); + this.groupPanelFigSize.Controls.Add(this.lblFSWidth); + this.groupPanelFigSize.DisabledBackColor = System.Drawing.Color.Empty; + this.groupPanelFigSize.Dock = System.Windows.Forms.DockStyle.Top; + this.groupPanelFigSize.Location = new System.Drawing.Point(0, 656); + this.groupPanelFigSize.Margin = new System.Windows.Forms.Padding(2); + this.groupPanelFigSize.Name = "groupPanelFigSize"; + this.groupPanelFigSize.Size = new System.Drawing.Size(202, 135); + // + // + // + this.groupPanelFigSize.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.groupPanelFigSize.Style.BackColorGradientAngle = 90; + this.groupPanelFigSize.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.groupPanelFigSize.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelFigSize.Style.BorderBottomWidth = 1; + this.groupPanelFigSize.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.groupPanelFigSize.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelFigSize.Style.BorderLeftWidth = 1; + this.groupPanelFigSize.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelFigSize.Style.BorderRightWidth = 1; + this.groupPanelFigSize.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.groupPanelFigSize.Style.BorderTopWidth = 1; + this.groupPanelFigSize.Style.CornerDiameter = 4; + this.groupPanelFigSize.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.groupPanelFigSize.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.groupPanelFigSize.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.groupPanelFigSize.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.groupPanelFigSize.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.groupPanelFigSize.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.groupPanelFigSize.TabIndex = 21; + this.groupPanelFigSize.Text = "Image Size"; + // + // btnFSrestore + // + this.btnFSrestore.Location = new System.Drawing.Point(112, 27); + this.btnFSrestore.Margin = new System.Windows.Forms.Padding(2); + this.btnFSrestore.Name = "btnFSrestore"; + this.btnFSrestore.Size = new System.Drawing.Size(54, 20); + this.btnFSrestore.TabIndex = 6; + this.btnFSrestore.Text = "Restore"; + this.btnFSrestore.UseVisualStyleBackColor = true; + this.btnFSrestore.Click += new System.EventHandler(this.btnFSrestore_Click); + // + // trBarFS + // + this.trBarFS.Location = new System.Drawing.Point(11, 58); + this.trBarFS.Margin = new System.Windows.Forms.Padding(2); + this.trBarFS.Maximum = 700; + this.trBarFS.Minimum = 50; + this.trBarFS.Name = "trBarFS"; + this.trBarFS.Size = new System.Drawing.Size(129, 45); + this.trBarFS.TabIndex = 5; + this.trBarFS.Value = 50; + this.trBarFS.Scroll += new System.EventHandler(this.trBarFS_Scroll); + // + // btnFsSav + // + this.btnFsSav.Location = new System.Drawing.Point(112, 2); + this.btnFsSav.Margin = new System.Windows.Forms.Padding(2); + this.btnFsSav.Name = "btnFsSav"; + this.btnFsSav.Size = new System.Drawing.Size(46, 20); + this.btnFsSav.TabIndex = 4; + this.btnFsSav.Text = "Set"; + this.btnFsSav.UseVisualStyleBackColor = true; + this.btnFsSav.Click += new System.EventHandler(this.btnFsSav_Click); + // + // tbFSHt + // + this.tbFSHt.Enabled = false; + this.tbFSHt.Location = new System.Drawing.Point(42, 27); + this.tbFSHt.Margin = new System.Windows.Forms.Padding(2); + this.tbFSHt.Name = "tbFSHt"; + this.tbFSHt.Size = new System.Drawing.Size(60, 20); + this.tbFSHt.TabIndex = 3; + // + // tbFSWd + // + this.tbFSWd.Location = new System.Drawing.Point(42, 4); + this.tbFSWd.Margin = new System.Windows.Forms.Padding(2); + this.tbFSWd.Name = "tbFSWd"; + this.tbFSWd.Size = new System.Drawing.Size(60, 20); + this.tbFSWd.TabIndex = 2; + this.tbFSWd.Leave += new System.EventHandler(this.tbFSWd_Leave); + // + // lblFSHt + // + this.lblFSHt.AutoSize = true; + this.lblFSHt.Location = new System.Drawing.Point(4, 28); + this.lblFSHt.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblFSHt.Name = "lblFSHt"; + this.lblFSHt.Size = new System.Drawing.Size(38, 13); + this.lblFSHt.TabIndex = 1; + this.lblFSHt.Text = "Height"; + // + // lblFSWidth + // + this.lblFSWidth.AutoSize = true; + this.lblFSWidth.Location = new System.Drawing.Point(4, 6); + this.lblFSWidth.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.lblFSWidth.Name = "lblFSWidth"; + this.lblFSWidth.Size = new System.Drawing.Size(35, 13); + this.lblFSWidth.TabIndex = 0; + this.lblFSWidth.Text = "Width"; + // + // DisplayTags + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.groupPanelFigSize); + this.Controls.Add(this.groupPanelWcnTrnResp); + this.Controls.Add(this.groupPanelIncludeOn); + this.Controls.Add(this.groupPanelPaginate); + this.Controls.Add(this.groupPanelChgBar); + this.Controls.Add(this.groupPanelCheckoff); + this.Controls.Add(this.groupPanelChgStepType); + this.Margin = new System.Windows.Forms.Padding(2); + this.Name = "DisplayTags"; + this.Size = new System.Drawing.Size(202, 802); + this.groupPanelPaginate.ResumeLayout(false); + this.groupPanelPaginate.PerformLayout(); + this.groupPanelCheckoff.ResumeLayout(false); + this.groupPanelCheckoff.PerformLayout(); + this.groupPanelChgBar.ResumeLayout(false); + this.groupPanelChgBar.PerformLayout(); + this.groupPanelChgStepType.ResumeLayout(false); + this.groupPanelChgStepType.PerformLayout(); + this.groupPanelIncludeOn.ResumeLayout(false); + this.groupPanelIncludeOn.PerformLayout(); + this.groupPanelWcnTrnResp.ResumeLayout(false); + this.groupPanelWcnTrnResp.PerformLayout(); + this.groupPanelFigSize.ResumeLayout(false); + this.groupPanelFigSize.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.trBarFS)).EndInit(); + this.ResumeLayout(false); } @@ -772,5 +794,6 @@ namespace Volian.Controls.Library private DevComponents.DotNetBar.Controls.CheckBoxX cbPrefPageBreak; private DevComponents.DotNetBar.Controls.CheckBoxX cbIncludeInTOC; private DevComponents.DotNetBar.Controls.CheckBoxX cbTCAS; - } + private DevComponents.DotNetBar.Controls.CheckBoxX cbInitialLine; + } } diff --git a/PROMS/Volian.Controls.Library/DisplayTags.cs b/PROMS/Volian.Controls.Library/DisplayTags.cs index c191a66a..e1dcb28f 100644 --- a/PROMS/Volian.Controls.Library/DisplayTags.cs +++ b/PROMS/Volian.Controls.Library/DisplayTags.cs @@ -142,6 +142,8 @@ namespace Volian.Controls.Library tbChgID.Enabled = false; lblChgId.Visible = tbChgID.Visible = false; CurItemInfo = null; + cbInitialLine.Visible = cbInitialLine.Enabled = false; + } private bool StepOverRide() { @@ -553,6 +555,16 @@ namespace Volian.Controls.Library } } } + + //CSM F2024 - 080: For South Texas (HLP formats), enable the initial line checkbox if it is in the formats + //Also, they want disable being selected to impact substeps - so do not show toggle if selected on a parent step + cbInitialLine.Visible = cbInitialLine.Enabled = false; + if (CurItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.ShowInitialLineDisable && !string.IsNullOrEmpty(CurItemInfo.FormatStepData.TabData.MacroEditTag) && CurItemInfo.FormatStepData.TabData.MacroEditTag == "_" && CurItemInfo.FormatStepData.TabData.MacroList != null && CurItemInfo.FormatStepData.TabData.MacroList.Count > 0 && !(CurItemInfo.IsRNOPart && CurItemInfo.FormatStepData.TabData.MacroList[0].NotInRNO)) + { + cbInitialLine.Visible = cbInitialLine.Enabled = true; + cbInitialLine.Checked = sc.Step_DisableInitialLine; + } + _Initalizing = false; } public void SetFigure(double wd, double wd2) @@ -969,25 +981,42 @@ namespace Volian.Controls.Library sc.Step_PreferredPagebreak = cbPrefPageBreak.Checked; MyEditItem.ChangeBarForConfigItemChange = true; } - //private void txbxAltConActSumText_Leave(object sender, EventArgs e) - //{ - // // User left Atlernate Continuous Action Text field. If text changed, then prompt - // // to see if save should occur. - // StepConfig sc = CurItemInfo.MyConfig as StepConfig; - // if (sc == null) return; - // bool bothEmpty = (sc.Step_AlternateContActSumText == null || sc.Step_AlternateContActSumText == "") && (txbxAltConActSumText.Text == null || txbxAltConActSumText.Text == ""); - // if (!bothEmpty && sc.Step_AlternateContActSumText != txbxAltConActSumText.Text) - // { - // if (MessageBox.Show(this, "Do you want to save the Alternate Continuous Action Text?", "Confirm Save", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) - // { - // MyEditItem.SaveContents(); - // sc.Step_AlternateContActSumText = txbxAltConActSumText.Text; // this actually saves the config - // } - // else - // txbxAltConActSumText.Text = sc.Step_AlternateContActSumText; - // } - //} + private void cbInitialLine_CheckedChanged(object sender, EventArgs e) + { + if (_Initalizing) return; + MyEditItem.SaveContents(); + StepConfig sc = CurItemInfo.MyConfig as StepConfig; + if (sc == null) return; + MyEditItem.ChangeBarForConfigItemChange = false; + sc.Step_DisableInitialLine = cbInitialLine.Checked; + MyEditItem.ChangeBarForConfigItemChange = true; - } + //needed to refresh display changing + MyEditItem.RefreshContent(); + MyEditItem.SetAllTabs(); + + } + + //private void txbxAltConActSumText_Leave(object sender, EventArgs e) + //{ + // // User left Atlernate Continuous Action Text field. If text changed, then prompt + // // to see if save should occur. + // StepConfig sc = CurItemInfo.MyConfig as StepConfig; + // if (sc == null) return; + // bool bothEmpty = (sc.Step_AlternateContActSumText == null || sc.Step_AlternateContActSumText == "") && (txbxAltConActSumText.Text == null || txbxAltConActSumText.Text == ""); + // if (!bothEmpty && sc.Step_AlternateContActSumText != txbxAltConActSumText.Text) + // { + // if (MessageBox.Show(this, "Do you want to save the Alternate Continuous Action Text?", "Confirm Save", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) + // { + // MyEditItem.SaveContents(); + // sc.Step_AlternateContActSumText = txbxAltConActSumText.Text; // this actually saves the config + // } + // else + // txbxAltConActSumText.Text = sc.Step_AlternateContActSumText; + // } + + //} + + } } From f0493e60d847ede809b097bbf805e3122559e51c Mon Sep 17 00:00:00 2001 From: mschill Date: Fri, 25 Oct 2024 14:33:20 -0400 Subject: [PATCH 26/32] CSM B2024-087 Fix RO Editor Inconsistencies Refresh issue in RO Definitions. Modify an In Use field item that is not one of the Standard items, choose Continue, choose OK in the Text Definition Field. when prompted if want to Update Local or Generic definitions: 1. Prompt should contain table name (previously was not for Setpoint items) 2. If Select "Yes", Should refresh to new field name when return to previous screen / click ok to go back to RO Definition. --- PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldCombFrm.cs | 2 ++ PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTextFrm.cs | 2 ++ PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs | 1 + PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs | 1 + .../ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs | 2 +- 5 files changed, 7 insertions(+), 1 deletion(-) diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldCombFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldCombFrm.cs index 64fcc1e7..d3dcb25c 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldCombFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldCombFrm.cs @@ -377,6 +377,7 @@ namespace ROEditor this.btnOK.TabIndex = 3; this.btnOK.Text = "OK"; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); + this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; // // btnCancel // @@ -553,6 +554,7 @@ namespace ROEditor // update the local/internal copy of the schema. if (success != true) { + this.DialogResult = DialogResult.Cancel; return; // DO YET process an error. } else diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTextFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTextFrm.cs index a3f29b8a..30e33bd9 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTextFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTextFrm.cs @@ -266,6 +266,7 @@ namespace ROEditor if (success != true) { + this.DialogResult = DialogResult.Cancel; return; // DO YET process an error. } else @@ -367,6 +368,7 @@ namespace ROEditor // // btnOK // + this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOK.Location = new System.Drawing.Point(216, 72); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(88, 24); diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs index b603f083..b79ac3ba 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/FieldTypeDefFrm.cs @@ -248,6 +248,7 @@ namespace ROEditor if (success != true) { + this.DialogResult = DialogResult.Cancel; return; // DO YET process an error. } return; diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs index ff0828fb..7eb532b6 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/GroupDefFrm.cs @@ -433,6 +433,7 @@ namespace ROEditor // // btnOK // + this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOK.Location = new System.Drawing.Point(24, 248); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(144, 24); diff --git a/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs b/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs index a720cd45..d80335e4 100644 --- a/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs +++ b/PROMS/ReferencedObjects/LibSource/RODBInterface/RODBInterface.cs @@ -2796,7 +2796,7 @@ namespace RODBInterface nodetocheck = (VlnXmlElement) nodetocheck.ParentNode; } - return nodetocheck.GetAttribute("MenuTitle"); + return nodetocheck.FirstChild.InnerText; } public override XmlSchema RODB_GetGroupSchema(VlnXmlElement elem) From e50ea6a5dbed8c6583cd694005054dcb7fbb0019 Mon Sep 17 00:00:00 2001 From: John Jenko Date: Fri, 25 Oct 2024 15:03:41 -0400 Subject: [PATCH 27/32] F2024-077 - Made the spacing between bullet tabs the step text consistent for bulleted sub-steps types and for multiple Cautions, Notes types --- PROMS/Formats/fmtall/BVPS1all.xml | Bin 131212 -> 131186 bytes PROMS/Formats/fmtall/BVPS2all.xml | Bin 97172 -> 97142 bytes PROMS/Formats/fmtall/BVPSAOPDEVall.xml | Bin 41426 -> 41450 bytes PROMS/Formats/fmtall/BVPSAOPall.xml | Bin 148552 -> 148524 bytes PROMS/Formats/fmtall/BVPSAtchall.xml | Bin 126252 -> 126226 bytes PROMS/Formats/fmtall/BVPSBCKall.xml | Bin 73376 -> 73352 bytes PROMS/Formats/fmtall/BVPSDEVall.xml | Bin 41426 -> 41450 bytes PROMS/Formats/fmtall/BVPSFlexDEVall.xml | Bin 39690 -> 39714 bytes PROMS/Formats/fmtall/BVPSNIBCKall.xml | Bin 71430 -> 71408 bytes PROMS/Formats/fmtall/BVPSSAMGBCKall.xml | Bin 70530 -> 70508 bytes PROMS/Formats/fmtall/BVPSSAMGDEVall.xml | Bin 41432 -> 41456 bytes PROMS/Formats/fmtall/BVPSSAMGall.xml | Bin 126926 -> 126900 bytes 12 files changed, 0 insertions(+), 0 deletions(-) diff --git a/PROMS/Formats/fmtall/BVPS1all.xml b/PROMS/Formats/fmtall/BVPS1all.xml index 4d56bea98f1f536fdf2cd990687ab33061e4e1ac..af860004108ee93deebdc4e847b9c01d525cda42 100644 GIT binary patch delta 223 zcmeBaqSG3b$1u&!kx>Yr9YuW7RYOGm>CG delta 212 zcmey=z|qslvEi83<|A5XBqx9A5}AC!jcsyEu@dunRfWlpA+lipl3usX2Ci0&cocX{ z?pw&VS;+kZ%j6$95}Rdwwy=U2lVyC~O`o@fk!|z6pi9hn^t){i2v1FeZG8ny(~m KzmmYXND2TkQBI!# diff --git a/PROMS/Formats/fmtall/BVPSAOPDEVall.xml b/PROMS/Formats/fmtall/BVPSAOPDEVall.xml index fa295fdc73e7b6173bf5b19c618f11191562bb8d..e56580125cf53a9f396a2677a44e2fc8dd7bad45 100644 GIT binary patch delta 47 qcmca~nCaDFrVR;BlUJ0rP2LbCGx?WOAB??O$>j$JoU_GOE(8EVNEZbF delta 99 zcmaELnCa4CrVR;BlarjpCcF5m0I|sA10@`jn>c}VyuoB9=RTZr8=5#aTe*DTz@=dG I8DF^&0G9D4LjV8( diff --git a/PROMS/Formats/fmtall/BVPSAOPall.xml b/PROMS/Formats/fmtall/BVPSAOPall.xml index e0accaccb253c7fb56f8a182530485eafd187068..b2beda6fac46ec43eb9d6f28d9e354cc66164ce9 100644 GIT binary patch delta 169 zcmX@n!MUb`bHfph&Brv{q$htV5t^*v!Z!IxxZ30=A##&hLR~g*aj{~=DlyGXh-I=z zn#|-6aV(P`_`jGOFpp#Ms|>Eq2fUf!5}P0RA7DY(zL_O-2@|>?&@#8pK@m+H$YwU* MO5A=ckumQP0DKfk1ONa4 delta 202 zcmZ3}!Fi&CbHfph&4)BRq$fXem72VyN@?;vSGLI_rBagi8a;AFIUm5UW4 zJ_VC?=5TE8apPi{ydzF-@;Y0a$quXeHhFJC;ZO3OH~j%KBg^J}0auuDnYJl(5))3j Th;1Cm7Bnj)ZdXWTKd^(5WAmBtFC0)qcTLh^nLNRfYjQ%2 V#^zIrGvJmrXQXe>NM}6K3IJROQ{w;t delta 214 zcmbPqi+#;4_6<@Rns1*RUFI{Z_ diff --git a/PROMS/Formats/fmtall/BVPSBCKall.xml b/PROMS/Formats/fmtall/BVPSBCKall.xml index 96feda74b9b95d949fc8df651f17edaa4a45c6c4..4cb37e4ec341944807b3c4560ec2f0987f2d0214 100644 GIT binary patch delta 118 zcmZ3mm!)Gb%Z5iDlb?7Xg5Vm_~`FuBoRal3~ Wv^mTB0}mlZlOHVQ+RPH!aufh_4l8;9 diff --git a/PROMS/Formats/fmtall/BVPSDEVall.xml b/PROMS/Formats/fmtall/BVPSDEVall.xml index 7911d58a73cc1d91555091efe7e5e65df623cd8b..d53e25ef46bde58a0d8394bbf8b4a767cd70c50b 100644 GIT binary patch delta 47 qcmca~nCaDFrVR;BlUJ0rP2LbCGx?WOAB??O$>j$JoU_GOE(8EVNEZbF delta 99 zcmaELnCa4CrVR;BlarjpCcF5m0I|sA10@`jn>c}VyuoB9=RTZr8=5#aTe*DTz@=dG I8DF^&0G9D4LjV8( diff --git a/PROMS/Formats/fmtall/BVPSFlexDEVall.xml b/PROMS/Formats/fmtall/BVPSFlexDEVall.xml index da6ceabce952d923141fcddb6df388c5ccf939b7..6c54c6360027dc7ce2c35844329f772e3a5f62cb 100644 GIT binary patch delta 51 ycmeC$#s}KNK!xser delta 83 zcmZ3qjj3xJ(}o$=lT+NpCO^p)nLNQw07%PBcCvDrY-Q7jO?-2f?GFyD5-jd=AppG^ BA;tgz diff --git a/PROMS/Formats/fmtall/BVPSNIBCKall.xml b/PROMS/Formats/fmtall/BVPSNIBCKall.xml index ad5caba12e1de61ccca9a442ddda1f23e6ebca23..3da88dc08dce3fd599173621f048b8638795b8bc 100644 GIT binary patch delta 109 zcmZo$$MRt<%Z6Q=n|Ej~lAZh{Ok%P~p~7UjaJI=)f+QyAxwB2aVkWftf_oJsPRRqF WO1!uvCtq+knq07iYx9)wqWu7KAuD$P delta 117 zcmeycmZfbS%Z6Q=oA+ogke&RbKxA^BJKN+Uca6zLeo|nzOP|)}2kt41xFjbZaFdyQ XZYIa(H=Zwe@G6R0!nL_Byl6iFEcGw) diff --git a/PROMS/Formats/fmtall/BVPSSAMGBCKall.xml b/PROMS/Formats/fmtall/BVPSSAMGBCKall.xml index 46fb84fef023c286283e28bf0f4c3b3e7a5759d4..6dad967c974651b3571b5dcd8011002de71e6921 100644 GIT binary patch delta 119 zcmZo#&hlm%%LYER%{*$iWG5E{OH5wUr7-z{GuvdBVhN`6s*@k&dQ4xy#K<;zMjg-Q j1ukZcI227Tn8q<#Dv4|J1h;!UxYYbvz_nQ+BxyeYC^9gX delta 120 zcmaE}jHPKg%LYER%>rsSWG9z&iA=V0VVi7{EjD?97tdq`Fk1>Fw%N(0j}f1O$xbeA Qn+x1N@DNh8DI{k<0OvO;fdBvi diff --git a/PROMS/Formats/fmtall/BVPSSAMGDEVall.xml b/PROMS/Formats/fmtall/BVPSSAMGDEVall.xml index d25661228d3b2b903022c552b0579547872783b4..270716a3d47fe279d5713cb80103d78525ef8cb4 100644 GIT binary patch delta 43 ncmca{nCZh|rVU9>lUJ3sO@83C3QEgtR&n{k0q1PlT)0;CV$FQV9cL9-${P5i;2+WI2)tMe;PO@^EkI*m)&gQ@`D4b Ll*#4`z6v1#>5C*Q diff --git a/PROMS/Formats/fmtall/BVPSSAMGall.xml b/PROMS/Formats/fmtall/BVPSSAMGall.xml index 3b5d7bc2698347be9a0b44b033a7bbd8f1adb016..cc6239ca7422fea4ccd1c8ac55c733c61ea0edc2 100644 GIT binary patch delta 210 zcmX?ipMA@H_6@sKH}6qZlb-y;5|b5x^p^=DlNSUSOlxOk+dRS1 zgb|OL%{k6zSSBB9mD(KO(Z&j5Ob+mPH+2Fd%jO4umzZ(uG};^!9LI!DJ|*lK2h_kl hlNBOaCMP6wO8{F?ruAuFZbIVNCcGZFUKJ Y!2z;pvqyXhD~Qp2BW3%I6vjJU0Cf*jIRF3v From 23a4edb610af689c0c4c4ef1bcdafeed5528d76e Mon Sep 17 00:00:00 2001 From: mschill Date: Mon, 28 Oct 2024 13:28:35 -0400 Subject: [PATCH 28/32] C2024-031 Option to Disable reopen closed tabs on PROMS reentry --- PROMS/VEPROMS User Interface/PROMSFixes.Sql | 62 +- .../VEPROMS User Interface/VEPROMS_UI.csproj | 11 +- .../dlgCheckOpenTabs.Designer.cs | 116 + .../dlgCheckOpenTabs.cs | 28 + .../dlgCheckOpenTabs.resx | 120 + .../frmSysOptions.Designer.cs | 2293 +++++++++-------- PROMS/VEPROMS User Interface/frmSysOptions.cs | 27 +- .../VEPROMS User Interface/frmSysOptions.resx | 15 +- PROMS/VEPROMS User Interface/frmVEPROMS.cs | 38 +- .../Minimal/UserSettings.cs | 91 + .../VEPROMS.CSLA.Library.csproj | 1 + 11 files changed, 1674 insertions(+), 1128 deletions(-) create mode 100644 PROMS/VEPROMS User Interface/dlgCheckOpenTabs.Designer.cs create mode 100644 PROMS/VEPROMS User Interface/dlgCheckOpenTabs.cs create mode 100644 PROMS/VEPROMS User Interface/dlgCheckOpenTabs.resx create mode 100644 PROMS/VEPROMS.CSLA.Library/Minimal/UserSettings.cs diff --git a/PROMS/VEPROMS User Interface/PROMSFixes.Sql b/PROMS/VEPROMS User Interface/PROMSFixes.Sql index 2a71f094..47fcf4af 100644 --- a/PROMS/VEPROMS User Interface/PROMSFixes.Sql +++ b/PROMS/VEPROMS User Interface/PROMSFixes.Sql @@ -24039,6 +24039,66 @@ GO ========================================================================================================== */ +---The following RememberOpenTabs/AlwaysOpenTabs columns were added for Remeber Open Tabs. +--- RememberOpenTabs = Do not prompt User when PROMS opens +--- AutoOpenTabs = OpenTabs when PROMS opens - Default to On +IF NOT EXISTS(SELECT * + FROM INFORMATION_SCHEMA.COLUMNS + WHERE TABLE_NAME = 'Users' + AND COLUMN_NAME = 'RememberOpenTabs') +ALTER TABLE Users ADD RememberOpenTabs bit NOT NULL DEFAULT(0); +go +-- Display the status +IF (@@Error = 0) PRINT 'Altered table [Users] Succeeded for RememberOpenTabs' +ELSE PRINT 'Altered table [Users] Error on Alter for RememberOpenTabs' +go + +IF NOT EXISTS(SELECT * + FROM INFORMATION_SCHEMA.COLUMNS + WHERE TABLE_NAME = 'Users' + AND COLUMN_NAME = 'AutoOpenTabs') +ALTER TABLE Users ADD AutoOpenTabs bit NOT NULL DEFAULT(1); +go +-- Display the status +IF (@@Error = 0) PRINT 'Altered table [Users] Succeeded for AutoOpenTabs' +ELSE PRINT 'Altered table [Users] Error on Alter for AutoOpenTabs' +go + +/****** Object: StoredProcedure [dbo].[vesp_UpdateUserSettings] Script Date: 10/24/2024 11:29:44 AM ******/ +IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[vesp_UpdateUserSettings]') AND OBJECTPROPERTY(id,N'IsProcedure') = 1) + DROP PROCEDURE [vesp_UpdateUserSettings]; +GO + +SET ANSI_NULLS ON +GO +SET QUOTED_IDENTIFIER ON +GO +-- ============================================= +-- Author: Matthew Schill +-- Create date: 10/24/2024 +-- Description: Update User Settings +-- ============================================= +CREATE PROCEDURE [dbo].[vesp_UpdateUserSettings] + +( + @UID varchar(100), + @Remember bit = null, + @AutoOpen bit = null +) +WITH EXECUTE AS OWNER +AS + UPDATE Users SET + RememberOpenTabs = ISNULL(@Remember,RememberOpenTabs), + AutoOpenTabs = ISNULL(@AutoOpen,AutoOpenTabs) + WHERE UserID =@UID + + RETURN +GO + +IF (@@Error = 0) PRINT 'Running vesp_UpdateUserSettings Succeeded' +ELSE PRINT 'Running vesp_UpdateUserSettings Failed to Execute' +GO + /* --------------------------------------------------------------------------- | ADD New Code Before this Block | @@ -24072,7 +24132,7 @@ BEGIN TRY -- Try Block DECLARE @RevDate varchar(255) DECLARE @RevDescription varchar(255) - set @RevDate = '10/03/2024 11:24' + set @RevDate = '10/28/2024 11:24' set @RevDescription = 'Add the ability for PROMS to remember the procedure tabs that were open when you closed PROMS' Select cast(@RevDate as datetime) RevDate, @RevDescription RevDescription diff --git a/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj b/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj index 1a410a53..4fefad85 100644 --- a/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj +++ b/PROMS/VEPROMS User Interface/VEPROMS_UI.csproj @@ -163,6 +163,12 @@ dlgCheckedOutProcedure.cs + + Form + + + dlgCheckOpenTabs.cs + Form @@ -324,6 +330,9 @@ Designer AboutVEPROMS.cs + + dlgCheckOpenTabs.cs + DlgCloseTabsOrExit.cs @@ -626,4 +635,4 @@ cmd /c "$(ProjectDir)FixRev.bat" - + \ No newline at end of file diff --git a/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.Designer.cs b/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.Designer.cs new file mode 100644 index 00000000..204397ea --- /dev/null +++ b/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.Designer.cs @@ -0,0 +1,116 @@ + +namespace VEPROMS +{ + partial class dlgCheckOpenTabs + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.labelX1 = new DevComponents.DotNetBar.LabelX(); + this.cbRemember = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.btnOpenTabs = new DevComponents.DotNetBar.ButtonX(); + this.btnNoTabs = new DevComponents.DotNetBar.ButtonX(); + this.SuspendLayout(); + // + // labelX1 + // + // + // + // + this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelX1.Location = new System.Drawing.Point(23, 2); + this.labelX1.Name = "labelX1"; + this.labelX1.Size = new System.Drawing.Size(363, 78); + this.labelX1.TabIndex = 0; + this.labelX1.Text = "Would you like for PROMS to reopen the tabs that you had open during your last se" + + "ssion?"; + this.labelX1.WordWrap = true; + // + // cbRemember + // + // + // + // + this.cbRemember.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbRemember.Location = new System.Drawing.Point(23, 75); + this.cbRemember.Name = "cbRemember"; + this.cbRemember.Size = new System.Drawing.Size(376, 47); + this.cbRemember.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; + this.cbRemember.TabIndex = 1; + this.cbRemember.Text = "Check this box to not be prompted in the future when opening PROMS. \nNote that th" + + "ese settings can be adjusted at any time from the \nOPTIONS menu for PROMS."; + // + // btnOpenTabs + // + this.btnOpenTabs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnOpenTabs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnOpenTabs.DialogResult = System.Windows.Forms.DialogResult.Yes; + this.btnOpenTabs.Location = new System.Drawing.Point(23, 139); + this.btnOpenTabs.Name = "btnOpenTabs"; + this.btnOpenTabs.Size = new System.Drawing.Size(150, 42); + this.btnOpenTabs.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; + this.btnOpenTabs.TabIndex = 2; + this.btnOpenTabs.Text = "Yes, Open Tabs from Last Session"; + this.btnOpenTabs.Click += new System.EventHandler(this.btnTabs_Click); + // + // btnNoTabs + // + this.btnNoTabs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnNoTabs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnNoTabs.DialogResult = System.Windows.Forms.DialogResult.No; + this.btnNoTabs.Location = new System.Drawing.Point(216, 139); + this.btnNoTabs.Name = "btnNoTabs"; + this.btnNoTabs.Size = new System.Drawing.Size(150, 42); + this.btnNoTabs.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled; + this.btnNoTabs.TabIndex = 3; + this.btnNoTabs.Text = "No, Do Not Open Tabs from Previous Session"; + this.btnNoTabs.Click += new System.EventHandler(this.btnTabs_Click); + // + // dlgCheckOpenTabs + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(411, 193); + this.ControlBox = false; + this.Controls.Add(this.btnNoTabs); + this.Controls.Add(this.btnOpenTabs); + this.Controls.Add(this.cbRemember); + this.Controls.Add(this.labelX1); + this.Name = "dlgCheckOpenTabs"; + this.Text = "Open Tabs from Previous Session"; + this.ResumeLayout(false); + + } + + #endregion + + private DevComponents.DotNetBar.LabelX labelX1; + private DevComponents.DotNetBar.Controls.CheckBoxX cbRemember; + private DevComponents.DotNetBar.ButtonX btnOpenTabs; + private DevComponents.DotNetBar.ButtonX btnNoTabs; + } +} \ No newline at end of file diff --git a/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.cs b/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.cs new file mode 100644 index 00000000..e4632efd --- /dev/null +++ b/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace VEPROMS +{ + public partial class dlgCheckOpenTabs : Form + { + public dlgCheckOpenTabs() + { + InitializeComponent(); + } + + public bool Remember { get; set; } = false; + + private void btnTabs_Click(object sender, EventArgs e) + { + Remember = this.cbRemember.Checked; + this.Close(); + } + } +} diff --git a/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.resx b/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.resx new file mode 100644 index 00000000..1af7de15 --- /dev/null +++ b/PROMS/VEPROMS User Interface/dlgCheckOpenTabs.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/PROMS/VEPROMS User Interface/frmSysOptions.Designer.cs b/PROMS/VEPROMS User Interface/frmSysOptions.Designer.cs index 88bca276..30a76f3c 100644 --- a/PROMS/VEPROMS User Interface/frmSysOptions.Designer.cs +++ b/PROMS/VEPROMS User Interface/frmSysOptions.Designer.cs @@ -28,1115 +28,1193 @@ namespace VEPROMS /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSysOptions)); - this.btnCancel = new DevComponents.DotNetBar.ButtonX(); - this.btnOK = new DevComponents.DotNetBar.ButtonX(); - this.gpSystemColor = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbRibonBlack = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbRibonSilver = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbRibonBlue = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.panButtons = new DevComponents.DotNetBar.PanelEx(); - this.btnIntrFaceStngs = new DevComponents.DotNetBar.ButtonX(); - this.btnStartMsg = new DevComponents.DotNetBar.ButtonX(); - this.btnGeneral = new DevComponents.DotNetBar.ButtonX(); - this.tcSysOpts = new DevComponents.DotNetBar.TabControl(); - this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel(); - this.grPanUCFImpOpt = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbUCFLForSetOnly = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbUCFLUseAll = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbUCFLOnlyImport = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbUCFLNotUsed = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbUCFIgnore = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.gpVisioPath = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.txbxVisioPath = new DevComponents.DotNetBar.Controls.TextBoxX(); - this.gpSeparateWindows = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbSeparateWindows = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.gpEnhancedDocs = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbEnhancedDocumentSync = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.gpPasteSettings = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbPastePlainText = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbPasteNoReturns = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.gpTreeView = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbTVExpand = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.gpStepTypeToolTip = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbStepTypeToolTip = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.gpAnnotationSettings = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbAnnotationPopup = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.gpTransRangeColor = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.colorPickerButton1 = new DevComponents.DotNetBar.ColorPickerButton(); - this.gpPropPageStyle = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.cbPropGrid = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbTabbedIntrFace = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.cbButtonIntrFace = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.tiIntrFaceStngs = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel(); - this.tiGeneral = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel(); - this.tiStUpMsg = new DevComponents.DotNetBar.TabItem(this.components); - this.btnReset = new DevComponents.DotNetBar.ButtonX(); - this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip(); - this.gpSystemColor.SuspendLayout(); - this.panButtons.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.tcSysOpts)).BeginInit(); - this.tcSysOpts.SuspendLayout(); - this.tabControlPanel3.SuspendLayout(); - this.grPanUCFImpOpt.SuspendLayout(); - this.gpVisioPath.SuspendLayout(); - this.gpSeparateWindows.SuspendLayout(); - this.gpEnhancedDocs.SuspendLayout(); - this.gpPasteSettings.SuspendLayout(); - this.gpTreeView.SuspendLayout(); - this.gpStepTypeToolTip.SuspendLayout(); - this.gpAnnotationSettings.SuspendLayout(); - this.gpTransRangeColor.SuspendLayout(); - this.gpPropPageStyle.SuspendLayout(); - this.SuspendLayout(); - // - // btnCancel - // - this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(821, 606); - this.btnCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 23); - this.btnCancel.TabIndex = 0; - this.btnCancel.Text = "Cancel"; - this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); - // - // btnOK - // - this.btnOK.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnOK.Location = new System.Drawing.Point(723, 606); - this.btnOK.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 23); - this.btnOK.TabIndex = 1; - this.btnOK.Text = "OK"; - this.btnOK.Click += new System.EventHandler(this.btnOK_Click); - // - // gpSystemColor - // - this.gpSystemColor.BackColor = System.Drawing.Color.Transparent; - this.gpSystemColor.CanvasColor = System.Drawing.Color.Transparent; - this.gpSystemColor.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpSystemColor.Controls.Add(this.cbRibonBlack); - this.gpSystemColor.Controls.Add(this.cbRibonSilver); - this.gpSystemColor.Controls.Add(this.cbRibonBlue); - this.gpSystemColor.DisabledBackColor = System.Drawing.Color.Empty; - this.gpSystemColor.Location = new System.Drawing.Point(52, 16); - this.gpSystemColor.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpSystemColor.Name = "gpSystemColor"; - this.gpSystemColor.Size = new System.Drawing.Size(109, 119); - // - // - // - this.gpSystemColor.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpSystemColor.Style.BackColorGradientAngle = 90; - this.gpSystemColor.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpSystemColor.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpSystemColor.Style.BorderBottomWidth = 1; - this.gpSystemColor.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpSystemColor.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpSystemColor.Style.BorderLeftWidth = 1; - this.gpSystemColor.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpSystemColor.Style.BorderRightWidth = 1; - this.gpSystemColor.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpSystemColor.Style.BorderTopWidth = 1; - this.gpSystemColor.Style.CornerDiameter = 4; - this.gpSystemColor.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpSystemColor.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpSystemColor.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpSystemColor.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpSystemColor.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpSystemColor.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpSystemColor.TabIndex = 1; - this.gpSystemColor.Text = "System Color"; - // - // cbRibonBlack - // - this.cbRibonBlack.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbRibonBlack.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbRibonBlack.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbRibonBlack.Location = new System.Drawing.Point(9, 66); - this.cbRibonBlack.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbRibonBlack.Name = "cbRibonBlack"; - this.cbRibonBlack.Size = new System.Drawing.Size(89, 23); - this.cbRibonBlack.TabIndex = 2; - this.cbRibonBlack.Text = "Black"; - this.cbRibonBlack.CheckedChanged += new System.EventHandler(this.cbRibonBlack_CheckedChanged); - // - // cbRibonSilver - // - this.cbRibonSilver.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbRibonSilver.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbRibonSilver.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbRibonSilver.Location = new System.Drawing.Point(9, 37); - this.cbRibonSilver.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbRibonSilver.Name = "cbRibonSilver"; - this.cbRibonSilver.Size = new System.Drawing.Size(89, 23); - this.cbRibonSilver.TabIndex = 1; - this.cbRibonSilver.Text = "Silver"; - this.cbRibonSilver.CheckedChanged += new System.EventHandler(this.cbRibonSilver_CheckedChanged); - // - // cbRibonBlue - // - this.cbRibonBlue.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbRibonBlue.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbRibonBlue.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbRibonBlue.Location = new System.Drawing.Point(9, 7); - this.cbRibonBlue.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbRibonBlue.Name = "cbRibonBlue"; - this.cbRibonBlue.Size = new System.Drawing.Size(89, 23); - this.cbRibonBlue.TabIndex = 0; - this.cbRibonBlue.Text = "Blue"; - this.cbRibonBlue.CheckedChanged += new System.EventHandler(this.cbRibonBlue_CheckedChanged); - // - // panButtons - // - this.panButtons.CanvasColor = System.Drawing.SystemColors.Control; - this.panButtons.Controls.Add(this.btnIntrFaceStngs); - this.panButtons.Controls.Add(this.btnStartMsg); - this.panButtons.Controls.Add(this.btnGeneral); - this.panButtons.DisabledBackColor = System.Drawing.Color.Empty; - this.panButtons.Location = new System.Drawing.Point(19, 17); - this.panButtons.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.panButtons.Name = "panButtons"; - this.panButtons.Size = new System.Drawing.Size(224, 566); - this.panButtons.Style.Alignment = System.Drawing.StringAlignment.Center; - this.panButtons.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.panButtons.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.panButtons.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.panButtons.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.panButtons.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.panButtons.Style.GradientAngle = 90; - this.panButtons.TabIndex = 2; - this.panButtons.Text = "panelEx1"; - this.panButtons.ThemeAware = true; - this.panButtons.Visible = false; - // - // btnIntrFaceStngs - // - this.btnIntrFaceStngs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnIntrFaceStngs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnIntrFaceStngs.Dock = System.Windows.Forms.DockStyle.Top; - this.btnIntrFaceStngs.Location = new System.Drawing.Point(0, 46); - this.btnIntrFaceStngs.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.btnIntrFaceStngs.Name = "btnIntrFaceStngs"; - this.btnIntrFaceStngs.Size = new System.Drawing.Size(224, 23); - this.btnIntrFaceStngs.TabIndex = 2; - this.btnIntrFaceStngs.Text = "My Interface Settings"; - this.btnIntrFaceStngs.Click += new System.EventHandler(this.btnIntrFaceStngs_Click); - // - // btnStartMsg - // - this.btnStartMsg.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnStartMsg.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnStartMsg.Dock = System.Windows.Forms.DockStyle.Top; - this.btnStartMsg.Location = new System.Drawing.Point(0, 23); - this.btnStartMsg.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.btnStartMsg.Name = "btnStartMsg"; - this.btnStartMsg.Size = new System.Drawing.Size(224, 23); - this.btnStartMsg.TabIndex = 1; - this.btnStartMsg.Text = "Startup Message"; - this.btnStartMsg.Visible = false; - this.btnStartMsg.Click += new System.EventHandler(this.btnStartMsg_Click); - // - // btnGeneral - // - this.btnGeneral.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnGeneral.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnGeneral.Dock = System.Windows.Forms.DockStyle.Top; - this.btnGeneral.Location = new System.Drawing.Point(0, 0); - this.btnGeneral.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.btnGeneral.Name = "btnGeneral"; - this.btnGeneral.Size = new System.Drawing.Size(224, 23); - this.btnGeneral.TabIndex = 0; - this.btnGeneral.Text = "General"; - this.btnGeneral.Visible = false; - this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click); - // - // tcSysOpts - // - this.tcSysOpts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247))))); - this.tcSysOpts.CanReorderTabs = true; - this.tcSysOpts.Controls.Add(this.tabControlPanel3); - this.tcSysOpts.Controls.Add(this.tabControlPanel1); - this.tcSysOpts.Controls.Add(this.tabControlPanel2); - this.tcSysOpts.Location = new System.Drawing.Point(36, 21); - this.tcSysOpts.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tcSysOpts.Name = "tcSysOpts"; - this.tcSysOpts.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold); - this.tcSysOpts.SelectedTabIndex = 2; - this.tcSysOpts.Size = new System.Drawing.Size(860, 562); - this.tcSysOpts.TabIndex = 3; - this.tcSysOpts.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox; - this.tcSysOpts.Tabs.Add(this.tiGeneral); - this.tcSysOpts.Tabs.Add(this.tiStUpMsg); - this.tcSysOpts.Tabs.Add(this.tiIntrFaceStngs); - this.tcSysOpts.TabsVisible = false; - this.tcSysOpts.Text = "tabControl1"; - this.tcSysOpts.ThemeAware = true; - // - // tabControlPanel3 - // - this.tabControlPanel3.Controls.Add(this.grPanUCFImpOpt); - this.tabControlPanel3.Controls.Add(this.gpVisioPath); - this.tabControlPanel3.Controls.Add(this.gpSeparateWindows); - this.tabControlPanel3.Controls.Add(this.gpEnhancedDocs); - this.tabControlPanel3.Controls.Add(this.gpPasteSettings); - this.tabControlPanel3.Controls.Add(this.gpTreeView); - this.tabControlPanel3.Controls.Add(this.gpStepTypeToolTip); - this.tabControlPanel3.Controls.Add(this.gpAnnotationSettings); - this.tabControlPanel3.Controls.Add(this.gpTransRangeColor); - this.tabControlPanel3.Controls.Add(this.gpPropPageStyle); - this.tabControlPanel3.Controls.Add(this.gpSystemColor); - this.tabControlPanel3.DisabledBackColor = System.Drawing.Color.Empty; - this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel3.Location = new System.Drawing.Point(0, 27); - this.tabControlPanel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabControlPanel3.Name = "tabControlPanel3"; - this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel3.Size = new System.Drawing.Size(860, 535); - this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.SystemColors.Control; - this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSysOptions)); + this.btnCancel = new DevComponents.DotNetBar.ButtonX(); + this.btnOK = new DevComponents.DotNetBar.ButtonX(); + this.gpSystemColor = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbRibonBlack = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbRibonSilver = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbRibonBlue = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.panButtons = new DevComponents.DotNetBar.PanelEx(); + this.btnIntrFaceStngs = new DevComponents.DotNetBar.ButtonX(); + this.btnStartMsg = new DevComponents.DotNetBar.ButtonX(); + this.btnGeneral = new DevComponents.DotNetBar.ButtonX(); + this.tcSysOpts = new DevComponents.DotNetBar.TabControl(); + this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel(); + this.grPanUCFImpOpt = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbUCFLForSetOnly = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbUCFLUseAll = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbUCFLOnlyImport = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbUCFLNotUsed = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbUCFIgnore = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.gpVisioPath = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.txbxVisioPath = new DevComponents.DotNetBar.Controls.TextBoxX(); + this.gpSeparateWindows = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbSeparateWindows = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.gpEnhancedDocs = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbEnhancedDocumentSync = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.gpPasteSettings = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbPastePlainText = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbPasteNoReturns = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.gpTreeView = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbTVExpand = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.gpStepTypeToolTip = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbStepTypeToolTip = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.gpAnnotationSettings = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbAnnotationPopup = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.gpTransRangeColor = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.colorPickerButton1 = new DevComponents.DotNetBar.ColorPickerButton(); + this.gpPropPageStyle = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.cbPropGrid = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbTabbedIntrFace = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbButtonIntrFace = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.tiIntrFaceStngs = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel(); + this.tiGeneral = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel(); + this.tiStUpMsg = new DevComponents.DotNetBar.TabItem(this.components); + this.btnReset = new DevComponents.DotNetBar.ButtonX(); + this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip(); + this.cbOTRemember = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.cbOTAutoOpen = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.gpOpenTabs = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.gpSystemColor.SuspendLayout(); + this.panButtons.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.tcSysOpts)).BeginInit(); + this.tcSysOpts.SuspendLayout(); + this.tabControlPanel3.SuspendLayout(); + this.grPanUCFImpOpt.SuspendLayout(); + this.gpVisioPath.SuspendLayout(); + this.gpSeparateWindows.SuspendLayout(); + this.gpEnhancedDocs.SuspendLayout(); + this.gpPasteSettings.SuspendLayout(); + this.gpTreeView.SuspendLayout(); + this.gpStepTypeToolTip.SuspendLayout(); + this.gpAnnotationSettings.SuspendLayout(); + this.gpTransRangeColor.SuspendLayout(); + this.gpPropPageStyle.SuspendLayout(); + this.gpOpenTabs.SuspendLayout(); + this.SuspendLayout(); + // + // btnCancel + // + this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.btnCancel.Location = new System.Drawing.Point(616, 492); + this.btnCancel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Size = new System.Drawing.Size(56, 19); + this.btnCancel.TabIndex = 0; + this.btnCancel.Text = "Cancel"; + this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); + // + // btnOK + // + this.btnOK.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnOK.Location = new System.Drawing.Point(542, 492); + this.btnOK.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnOK.Name = "btnOK"; + this.btnOK.Size = new System.Drawing.Size(56, 19); + this.btnOK.TabIndex = 1; + this.btnOK.Text = "OK"; + this.btnOK.Click += new System.EventHandler(this.btnOK_Click); + // + // gpSystemColor + // + this.gpSystemColor.BackColor = System.Drawing.Color.Transparent; + this.gpSystemColor.CanvasColor = System.Drawing.Color.Transparent; + this.gpSystemColor.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpSystemColor.Controls.Add(this.cbRibonBlack); + this.gpSystemColor.Controls.Add(this.cbRibonSilver); + this.gpSystemColor.Controls.Add(this.cbRibonBlue); + this.gpSystemColor.DisabledBackColor = System.Drawing.Color.Empty; + this.gpSystemColor.Location = new System.Drawing.Point(39, 13); + this.gpSystemColor.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpSystemColor.Name = "gpSystemColor"; + this.gpSystemColor.Size = new System.Drawing.Size(82, 97); + // + // + // + this.gpSystemColor.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpSystemColor.Style.BackColorGradientAngle = 90; + this.gpSystemColor.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpSystemColor.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpSystemColor.Style.BorderBottomWidth = 1; + this.gpSystemColor.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpSystemColor.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpSystemColor.Style.BorderLeftWidth = 1; + this.gpSystemColor.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpSystemColor.Style.BorderRightWidth = 1; + this.gpSystemColor.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpSystemColor.Style.BorderTopWidth = 1; + this.gpSystemColor.Style.CornerDiameter = 4; + this.gpSystemColor.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpSystemColor.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpSystemColor.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpSystemColor.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpSystemColor.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpSystemColor.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpSystemColor.TabIndex = 1; + this.gpSystemColor.Text = "System Color"; + // + // cbRibonBlack + // + this.cbRibonBlack.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbRibonBlack.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbRibonBlack.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbRibonBlack.Location = new System.Drawing.Point(7, 54); + this.cbRibonBlack.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbRibonBlack.Name = "cbRibonBlack"; + this.cbRibonBlack.Size = new System.Drawing.Size(67, 19); + this.cbRibonBlack.TabIndex = 2; + this.cbRibonBlack.Text = "Black"; + this.cbRibonBlack.CheckedChanged += new System.EventHandler(this.cbRibonBlack_CheckedChanged); + // + // cbRibonSilver + // + this.cbRibonSilver.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbRibonSilver.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbRibonSilver.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbRibonSilver.Location = new System.Drawing.Point(7, 30); + this.cbRibonSilver.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbRibonSilver.Name = "cbRibonSilver"; + this.cbRibonSilver.Size = new System.Drawing.Size(67, 19); + this.cbRibonSilver.TabIndex = 1; + this.cbRibonSilver.Text = "Silver"; + this.cbRibonSilver.CheckedChanged += new System.EventHandler(this.cbRibonSilver_CheckedChanged); + // + // cbRibonBlue + // + this.cbRibonBlue.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbRibonBlue.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbRibonBlue.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbRibonBlue.Location = new System.Drawing.Point(7, 6); + this.cbRibonBlue.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbRibonBlue.Name = "cbRibonBlue"; + this.cbRibonBlue.Size = new System.Drawing.Size(67, 19); + this.cbRibonBlue.TabIndex = 0; + this.cbRibonBlue.Text = "Blue"; + this.cbRibonBlue.CheckedChanged += new System.EventHandler(this.cbRibonBlue_CheckedChanged); + // + // panButtons + // + this.panButtons.CanvasColor = System.Drawing.SystemColors.Control; + this.panButtons.Controls.Add(this.btnIntrFaceStngs); + this.panButtons.Controls.Add(this.btnStartMsg); + this.panButtons.Controls.Add(this.btnGeneral); + this.panButtons.DisabledBackColor = System.Drawing.Color.Empty; + this.panButtons.Location = new System.Drawing.Point(14, 14); + this.panButtons.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.panButtons.Name = "panButtons"; + this.panButtons.Size = new System.Drawing.Size(168, 460); + this.panButtons.Style.Alignment = System.Drawing.StringAlignment.Center; + this.panButtons.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.panButtons.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.panButtons.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.panButtons.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.panButtons.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.panButtons.Style.GradientAngle = 90; + this.panButtons.TabIndex = 2; + this.panButtons.Text = "panelEx1"; + this.panButtons.ThemeAware = true; + this.panButtons.Visible = false; + // + // btnIntrFaceStngs + // + this.btnIntrFaceStngs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnIntrFaceStngs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnIntrFaceStngs.Dock = System.Windows.Forms.DockStyle.Top; + this.btnIntrFaceStngs.Location = new System.Drawing.Point(0, 38); + this.btnIntrFaceStngs.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnIntrFaceStngs.Name = "btnIntrFaceStngs"; + this.btnIntrFaceStngs.Size = new System.Drawing.Size(168, 19); + this.btnIntrFaceStngs.TabIndex = 2; + this.btnIntrFaceStngs.Text = "My Interface Settings"; + this.btnIntrFaceStngs.Click += new System.EventHandler(this.btnIntrFaceStngs_Click); + // + // btnStartMsg + // + this.btnStartMsg.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnStartMsg.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnStartMsg.Dock = System.Windows.Forms.DockStyle.Top; + this.btnStartMsg.Location = new System.Drawing.Point(0, 19); + this.btnStartMsg.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnStartMsg.Name = "btnStartMsg"; + this.btnStartMsg.Size = new System.Drawing.Size(168, 19); + this.btnStartMsg.TabIndex = 1; + this.btnStartMsg.Text = "Startup Message"; + this.btnStartMsg.Visible = false; + this.btnStartMsg.Click += new System.EventHandler(this.btnStartMsg_Click); + // + // btnGeneral + // + this.btnGeneral.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnGeneral.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnGeneral.Dock = System.Windows.Forms.DockStyle.Top; + this.btnGeneral.Location = new System.Drawing.Point(0, 0); + this.btnGeneral.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnGeneral.Name = "btnGeneral"; + this.btnGeneral.Size = new System.Drawing.Size(168, 19); + this.btnGeneral.TabIndex = 0; + this.btnGeneral.Text = "General"; + this.btnGeneral.Visible = false; + this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click); + // + // tcSysOpts + // + this.tcSysOpts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247))))); + this.tcSysOpts.CanReorderTabs = true; + this.tcSysOpts.Controls.Add(this.tabControlPanel3); + this.tcSysOpts.Controls.Add(this.tabControlPanel1); + this.tcSysOpts.Controls.Add(this.tabControlPanel2); + this.tcSysOpts.Location = new System.Drawing.Point(27, 17); + this.tcSysOpts.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tcSysOpts.Name = "tcSysOpts"; + this.tcSysOpts.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold); + this.tcSysOpts.SelectedTabIndex = 2; + this.tcSysOpts.Size = new System.Drawing.Size(645, 457); + this.tcSysOpts.TabIndex = 3; + this.tcSysOpts.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox; + this.tcSysOpts.Tabs.Add(this.tiGeneral); + this.tcSysOpts.Tabs.Add(this.tiStUpMsg); + this.tcSysOpts.Tabs.Add(this.tiIntrFaceStngs); + this.tcSysOpts.TabsVisible = false; + this.tcSysOpts.Text = "tabControl1"; + this.tcSysOpts.ThemeAware = true; + // + // tabControlPanel3 + // + this.tabControlPanel3.Controls.Add(this.gpOpenTabs); + this.tabControlPanel3.Controls.Add(this.grPanUCFImpOpt); + this.tabControlPanel3.Controls.Add(this.gpVisioPath); + this.tabControlPanel3.Controls.Add(this.gpSeparateWindows); + this.tabControlPanel3.Controls.Add(this.gpEnhancedDocs); + this.tabControlPanel3.Controls.Add(this.gpPasteSettings); + this.tabControlPanel3.Controls.Add(this.gpTreeView); + this.tabControlPanel3.Controls.Add(this.gpStepTypeToolTip); + this.tabControlPanel3.Controls.Add(this.gpAnnotationSettings); + this.tabControlPanel3.Controls.Add(this.gpTransRangeColor); + this.tabControlPanel3.Controls.Add(this.gpPropPageStyle); + this.tabControlPanel3.Controls.Add(this.gpSystemColor); + this.tabControlPanel3.DisabledBackColor = System.Drawing.Color.Empty; + this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel3.Location = new System.Drawing.Point(0, 27); + this.tabControlPanel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel3.Name = "tabControlPanel3"; + this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel3.Size = new System.Drawing.Size(645, 430); + this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.SystemColors.Control; + this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.tabControlPanel3.Style.GradientAngle = 90; - this.tabControlPanel3.TabIndex = 3; - this.tabControlPanel3.TabItem = this.tiIntrFaceStngs; - this.tabControlPanel3.ThemeAware = true; - // - // grPanUCFImpOpt - // - this.grPanUCFImpOpt.CanvasColor = System.Drawing.SystemColors.Control; - this.grPanUCFImpOpt.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.grPanUCFImpOpt.Controls.Add(this.cbUCFLForSetOnly); - this.grPanUCFImpOpt.Controls.Add(this.cbUCFLUseAll); - this.grPanUCFImpOpt.Controls.Add(this.cbUCFLOnlyImport); - this.grPanUCFImpOpt.Controls.Add(this.cbUCFLNotUsed); - this.grPanUCFImpOpt.Controls.Add(this.cbUCFIgnore); - this.grPanUCFImpOpt.DisabledBackColor = System.Drawing.Color.Empty; - this.grPanUCFImpOpt.Location = new System.Drawing.Point(417, 15); - this.grPanUCFImpOpt.Name = "grPanUCFImpOpt"; - this.grPanUCFImpOpt.Size = new System.Drawing.Size(195, 170); - // - // - // - this.grPanUCFImpOpt.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.grPanUCFImpOpt.Style.BackColorGradientAngle = 90; - this.grPanUCFImpOpt.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.grPanUCFImpOpt.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.grPanUCFImpOpt.Style.BorderBottomWidth = 1; - this.grPanUCFImpOpt.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.grPanUCFImpOpt.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.grPanUCFImpOpt.Style.BorderLeftWidth = 1; - this.grPanUCFImpOpt.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.grPanUCFImpOpt.Style.BorderRightWidth = 1; - this.grPanUCFImpOpt.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.grPanUCFImpOpt.Style.BorderTopWidth = 1; - this.grPanUCFImpOpt.Style.CornerDiameter = 4; - this.grPanUCFImpOpt.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.grPanUCFImpOpt.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.grPanUCFImpOpt.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.grPanUCFImpOpt.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.grPanUCFImpOpt.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.grPanUCFImpOpt.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.grPanUCFImpOpt.TabIndex = 12; - this.grPanUCFImpOpt.Text = "UCF Import Options"; - // - // cbUCFLForSetOnly - // - this.cbUCFLForSetOnly.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbUCFLForSetOnly.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbUCFLForSetOnly.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbUCFLForSetOnly.Location = new System.Drawing.Point(3, 110); - this.cbUCFLForSetOnly.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbUCFLForSetOnly.Name = "cbUCFLForSetOnly"; - this.cbUCFLForSetOnly.Size = new System.Drawing.Size(140, 23); - this.cbUCFLForSetOnly.TabIndex = 5; - this.cbUCFLForSetOnly.Text = "Load For Set Only"; - this.cbUCFLForSetOnly.CheckedChanged += new System.EventHandler(this.cbUCFLForSetOnly_CheckedChanged); - // - // cbUCFLUseAll - // - this.cbUCFLUseAll.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbUCFLUseAll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbUCFLUseAll.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbUCFLUseAll.Location = new System.Drawing.Point(3, 83); - this.cbUCFLUseAll.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbUCFLUseAll.Name = "cbUCFLUseAll"; - this.cbUCFLUseAll.Size = new System.Drawing.Size(140, 23); - this.cbUCFLUseAll.TabIndex = 4; - this.cbUCFLUseAll.Text = "Load Use All"; - this.cbUCFLUseAll.CheckedChanged += new System.EventHandler(this.cbUCFLUseAll_CheckedChanged); - // - // cbUCFLOnlyImport - // - this.cbUCFLOnlyImport.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbUCFLOnlyImport.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbUCFLOnlyImport.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbUCFLOnlyImport.Location = new System.Drawing.Point(3, 56); - this.cbUCFLOnlyImport.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbUCFLOnlyImport.Name = "cbUCFLOnlyImport"; - this.cbUCFLOnlyImport.Size = new System.Drawing.Size(140, 23); - this.cbUCFLOnlyImport.TabIndex = 3; - this.cbUCFLOnlyImport.Text = "Load Only Imported"; - this.cbUCFLOnlyImport.CheckedChanged += new System.EventHandler(this.cbUCFLOnlyImport_CheckedChanged); - // - // cbUCFLNotUsed - // - this.cbUCFLNotUsed.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbUCFLNotUsed.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbUCFLNotUsed.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbUCFLNotUsed.Location = new System.Drawing.Point(3, 29); - this.cbUCFLNotUsed.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbUCFLNotUsed.Name = "cbUCFLNotUsed"; - this.cbUCFLNotUsed.Size = new System.Drawing.Size(118, 23); - this.cbUCFLNotUsed.TabIndex = 2; - this.cbUCFLNotUsed.Text = "Load Not Used"; - this.cbUCFLNotUsed.CheckedChanged += new System.EventHandler(this.cbUCFLNotUsed_CheckedChanged); - // - // cbUCFIgnore - // - this.cbUCFIgnore.BackColor = System.Drawing.Color.Transparent; - // - // - // - this.cbUCFIgnore.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbUCFIgnore.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbUCFIgnore.Location = new System.Drawing.Point(3, 2); - this.cbUCFIgnore.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbUCFIgnore.Name = "cbUCFIgnore"; - this.cbUCFIgnore.Size = new System.Drawing.Size(89, 23); - this.cbUCFIgnore.TabIndex = 1; - this.cbUCFIgnore.Text = "Ignore"; - this.cbUCFIgnore.CheckedChanged += new System.EventHandler(this.cbUCFIgnore_CheckedChanged); - // - // gpVisioPath - // - this.gpVisioPath.BackColor = System.Drawing.Color.Transparent; - this.gpVisioPath.CanvasColor = System.Drawing.SystemColors.Control; - this.gpVisioPath.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpVisioPath.Controls.Add(this.txbxVisioPath); - this.gpVisioPath.DisabledBackColor = System.Drawing.Color.Empty; - this.gpVisioPath.Location = new System.Drawing.Point(33, 427); - this.gpVisioPath.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpVisioPath.Name = "gpVisioPath"; - this.gpVisioPath.Size = new System.Drawing.Size(380, 85); - // - // - // - this.gpVisioPath.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpVisioPath.Style.BackColorGradientAngle = 90; - this.gpVisioPath.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpVisioPath.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpVisioPath.Style.BorderBottomWidth = 1; - this.gpVisioPath.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpVisioPath.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpVisioPath.Style.BorderLeftWidth = 1; - this.gpVisioPath.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpVisioPath.Style.BorderRightWidth = 1; - this.gpVisioPath.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpVisioPath.Style.BorderTopWidth = 1; - this.gpVisioPath.Style.CornerDiameter = 4; - this.gpVisioPath.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpVisioPath.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpVisioPath.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpVisioPath.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpVisioPath.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpVisioPath.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpVisioPath.TabIndex = 11; - this.gpVisioPath.Text = "Visio Path"; - // - // txbxVisioPath - // - // - // - // - this.txbxVisioPath.Border.Class = "TextBoxBorder"; - this.txbxVisioPath.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.txbxVisioPath.Location = new System.Drawing.Point(11, 16); - this.txbxVisioPath.Margin = new System.Windows.Forms.Padding(4); - this.txbxVisioPath.Name = "txbxVisioPath"; - this.txbxVisioPath.PreventEnterBeep = true; - this.txbxVisioPath.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal; - this.txbxVisioPath.ShortcutsEnabled = false; - this.txbxVisioPath.Size = new System.Drawing.Size(351, 22); - this.superTooltip1.SetSuperTooltip(this.txbxVisioPath, new DevComponents.DotNetBar.SuperTooltipInfo("Visio Path", "", "PROMS wil use this specified path to open Visio for use with inserting the Equati" + + this.tabControlPanel3.Style.GradientAngle = 90; + this.tabControlPanel3.TabIndex = 3; + this.tabControlPanel3.TabItem = this.tiIntrFaceStngs; + this.tabControlPanel3.ThemeAware = true; + // + // grPanUCFImpOpt + // + this.grPanUCFImpOpt.CanvasColor = System.Drawing.SystemColors.Control; + this.grPanUCFImpOpt.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.grPanUCFImpOpt.Controls.Add(this.cbUCFLForSetOnly); + this.grPanUCFImpOpt.Controls.Add(this.cbUCFLUseAll); + this.grPanUCFImpOpt.Controls.Add(this.cbUCFLOnlyImport); + this.grPanUCFImpOpt.Controls.Add(this.cbUCFLNotUsed); + this.grPanUCFImpOpt.Controls.Add(this.cbUCFIgnore); + this.grPanUCFImpOpt.DisabledBackColor = System.Drawing.Color.Empty; + this.grPanUCFImpOpt.Location = new System.Drawing.Point(313, 12); + this.grPanUCFImpOpt.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.grPanUCFImpOpt.Name = "grPanUCFImpOpt"; + this.grPanUCFImpOpt.Size = new System.Drawing.Size(146, 138); + // + // + // + this.grPanUCFImpOpt.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.grPanUCFImpOpt.Style.BackColorGradientAngle = 90; + this.grPanUCFImpOpt.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.grPanUCFImpOpt.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.grPanUCFImpOpt.Style.BorderBottomWidth = 1; + this.grPanUCFImpOpt.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.grPanUCFImpOpt.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.grPanUCFImpOpt.Style.BorderLeftWidth = 1; + this.grPanUCFImpOpt.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.grPanUCFImpOpt.Style.BorderRightWidth = 1; + this.grPanUCFImpOpt.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.grPanUCFImpOpt.Style.BorderTopWidth = 1; + this.grPanUCFImpOpt.Style.CornerDiameter = 4; + this.grPanUCFImpOpt.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.grPanUCFImpOpt.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.grPanUCFImpOpt.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.grPanUCFImpOpt.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.grPanUCFImpOpt.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.grPanUCFImpOpt.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.grPanUCFImpOpt.TabIndex = 12; + this.grPanUCFImpOpt.Text = "UCF Import Options"; + // + // cbUCFLForSetOnly + // + this.cbUCFLForSetOnly.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbUCFLForSetOnly.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbUCFLForSetOnly.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbUCFLForSetOnly.Location = new System.Drawing.Point(2, 89); + this.cbUCFLForSetOnly.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbUCFLForSetOnly.Name = "cbUCFLForSetOnly"; + this.cbUCFLForSetOnly.Size = new System.Drawing.Size(105, 19); + this.cbUCFLForSetOnly.TabIndex = 5; + this.cbUCFLForSetOnly.Text = "Load For Set Only"; + this.cbUCFLForSetOnly.CheckedChanged += new System.EventHandler(this.cbUCFLForSetOnly_CheckedChanged); + // + // cbUCFLUseAll + // + this.cbUCFLUseAll.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbUCFLUseAll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbUCFLUseAll.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbUCFLUseAll.Location = new System.Drawing.Point(2, 67); + this.cbUCFLUseAll.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbUCFLUseAll.Name = "cbUCFLUseAll"; + this.cbUCFLUseAll.Size = new System.Drawing.Size(105, 19); + this.cbUCFLUseAll.TabIndex = 4; + this.cbUCFLUseAll.Text = "Load Use All"; + this.cbUCFLUseAll.CheckedChanged += new System.EventHandler(this.cbUCFLUseAll_CheckedChanged); + // + // cbUCFLOnlyImport + // + this.cbUCFLOnlyImport.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbUCFLOnlyImport.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbUCFLOnlyImport.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbUCFLOnlyImport.Location = new System.Drawing.Point(2, 46); + this.cbUCFLOnlyImport.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbUCFLOnlyImport.Name = "cbUCFLOnlyImport"; + this.cbUCFLOnlyImport.Size = new System.Drawing.Size(105, 19); + this.cbUCFLOnlyImport.TabIndex = 3; + this.cbUCFLOnlyImport.Text = "Load Only Imported"; + this.cbUCFLOnlyImport.CheckedChanged += new System.EventHandler(this.cbUCFLOnlyImport_CheckedChanged); + // + // cbUCFLNotUsed + // + this.cbUCFLNotUsed.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbUCFLNotUsed.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbUCFLNotUsed.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbUCFLNotUsed.Location = new System.Drawing.Point(2, 24); + this.cbUCFLNotUsed.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbUCFLNotUsed.Name = "cbUCFLNotUsed"; + this.cbUCFLNotUsed.Size = new System.Drawing.Size(88, 19); + this.cbUCFLNotUsed.TabIndex = 2; + this.cbUCFLNotUsed.Text = "Load Not Used"; + this.cbUCFLNotUsed.CheckedChanged += new System.EventHandler(this.cbUCFLNotUsed_CheckedChanged); + // + // cbUCFIgnore + // + this.cbUCFIgnore.BackColor = System.Drawing.Color.Transparent; + // + // + // + this.cbUCFIgnore.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbUCFIgnore.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbUCFIgnore.Location = new System.Drawing.Point(2, 2); + this.cbUCFIgnore.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbUCFIgnore.Name = "cbUCFIgnore"; + this.cbUCFIgnore.Size = new System.Drawing.Size(67, 19); + this.cbUCFIgnore.TabIndex = 1; + this.cbUCFIgnore.Text = "Ignore"; + this.cbUCFIgnore.CheckedChanged += new System.EventHandler(this.cbUCFIgnore_CheckedChanged); + // + // gpVisioPath + // + this.gpVisioPath.BackColor = System.Drawing.Color.Transparent; + this.gpVisioPath.CanvasColor = System.Drawing.SystemColors.Control; + this.gpVisioPath.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpVisioPath.Controls.Add(this.txbxVisioPath); + this.gpVisioPath.DisabledBackColor = System.Drawing.Color.Empty; + this.gpVisioPath.Location = new System.Drawing.Point(25, 347); + this.gpVisioPath.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpVisioPath.Name = "gpVisioPath"; + this.gpVisioPath.Size = new System.Drawing.Size(285, 69); + // + // + // + this.gpVisioPath.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpVisioPath.Style.BackColorGradientAngle = 90; + this.gpVisioPath.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpVisioPath.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpVisioPath.Style.BorderBottomWidth = 1; + this.gpVisioPath.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpVisioPath.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpVisioPath.Style.BorderLeftWidth = 1; + this.gpVisioPath.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpVisioPath.Style.BorderRightWidth = 1; + this.gpVisioPath.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpVisioPath.Style.BorderTopWidth = 1; + this.gpVisioPath.Style.CornerDiameter = 4; + this.gpVisioPath.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpVisioPath.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpVisioPath.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpVisioPath.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpVisioPath.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpVisioPath.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpVisioPath.TabIndex = 11; + this.gpVisioPath.Text = "Visio Path"; + // + // txbxVisioPath + // + // + // + // + this.txbxVisioPath.Border.Class = "TextBoxBorder"; + this.txbxVisioPath.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.txbxVisioPath.Location = new System.Drawing.Point(8, 13); + this.txbxVisioPath.Name = "txbxVisioPath"; + this.txbxVisioPath.PreventEnterBeep = true; + this.txbxVisioPath.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal; + this.txbxVisioPath.ShortcutsEnabled = false; + this.txbxVisioPath.Size = new System.Drawing.Size(263, 20); + this.superTooltip1.SetSuperTooltip(this.txbxVisioPath, new DevComponents.DotNetBar.SuperTooltipInfo("Visio Path", "", "PROMS wil use this specified path to open Visio for use with inserting the Equati" + "on sub step type.\r\n\r\nIf this is blank, then PROMS will look in the registry for " + "the path to Visio.\r\n\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(300, 115))); - this.txbxVisioPath.TabIndex = 0; - this.txbxVisioPath.WordWrap = false; - this.txbxVisioPath.Leave += new System.EventHandler(this.txbxVisioPath_Leave_1); - // - // gpSeparateWindows - // - this.gpSeparateWindows.BackColor = System.Drawing.Color.Transparent; - this.gpSeparateWindows.CanvasColor = System.Drawing.SystemColors.Control; - this.gpSeparateWindows.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpSeparateWindows.Controls.Add(this.cbSeparateWindows); - this.gpSeparateWindows.DisabledBackColor = System.Drawing.Color.Empty; - this.gpSeparateWindows.Location = new System.Drawing.Point(417, 310); - this.gpSeparateWindows.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpSeparateWindows.Name = "gpSeparateWindows"; - this.gpSeparateWindows.Size = new System.Drawing.Size(169, 100); - // - // - // - this.gpSeparateWindows.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpSeparateWindows.Style.BackColorGradientAngle = 90; - this.gpSeparateWindows.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpSeparateWindows.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpSeparateWindows.Style.BorderBottomWidth = 1; - this.gpSeparateWindows.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpSeparateWindows.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpSeparateWindows.Style.BorderLeftWidth = 1; - this.gpSeparateWindows.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpSeparateWindows.Style.BorderRightWidth = 1; - this.gpSeparateWindows.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpSeparateWindows.Style.BorderTopWidth = 1; - this.gpSeparateWindows.Style.CornerDiameter = 4; - this.gpSeparateWindows.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpSeparateWindows.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpSeparateWindows.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpSeparateWindows.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpSeparateWindows.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpSeparateWindows.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpSeparateWindows.TabIndex = 10; - this.gpSeparateWindows.Text = "Separate Windows"; - // - // cbSeparateWindows - // - // - // - // - this.cbSeparateWindows.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbSeparateWindows.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cbSeparateWindows.Location = new System.Drawing.Point(11, 10); - this.cbSeparateWindows.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbSeparateWindows.Name = "cbSeparateWindows"; - this.cbSeparateWindows.Size = new System.Drawing.Size(143, 23); - this.cbSeparateWindows.TabIndex = 9; - this.cbSeparateWindows.Text = "By Procedure Set"; - this.cbSeparateWindows.CheckedChanged += new System.EventHandler(this.cbSeparateWindows_CheckedChanged); - // - // gpEnhancedDocs - // - this.gpEnhancedDocs.BackColor = System.Drawing.Color.Transparent; - this.gpEnhancedDocs.CanvasColor = System.Drawing.SystemColors.Control; - this.gpEnhancedDocs.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpEnhancedDocs.Controls.Add(this.cbEnhancedDocumentSync); - this.gpEnhancedDocs.DisabledBackColor = System.Drawing.Color.Empty; - this.gpEnhancedDocs.Location = new System.Drawing.Point(223, 310); - this.gpEnhancedDocs.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpEnhancedDocs.Name = "gpEnhancedDocs"; - this.gpEnhancedDocs.Size = new System.Drawing.Size(169, 100); - // - // - // - this.gpEnhancedDocs.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpEnhancedDocs.Style.BackColorGradientAngle = 90; - this.gpEnhancedDocs.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpEnhancedDocs.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpEnhancedDocs.Style.BorderBottomWidth = 1; - this.gpEnhancedDocs.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpEnhancedDocs.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpEnhancedDocs.Style.BorderLeftWidth = 1; - this.gpEnhancedDocs.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpEnhancedDocs.Style.BorderRightWidth = 1; - this.gpEnhancedDocs.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpEnhancedDocs.Style.BorderTopWidth = 1; - this.gpEnhancedDocs.Style.CornerDiameter = 4; - this.gpEnhancedDocs.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpEnhancedDocs.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpEnhancedDocs.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpEnhancedDocs.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpEnhancedDocs.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpEnhancedDocs.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpEnhancedDocs.TabIndex = 9; - this.gpEnhancedDocs.Text = "Enhanced Documents"; - // - // cbEnhancedDocumentSync - // - // - // - // - this.cbEnhancedDocumentSync.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbEnhancedDocumentSync.Checked = true; - this.cbEnhancedDocumentSync.CheckState = System.Windows.Forms.CheckState.Checked; - this.cbEnhancedDocumentSync.CheckValue = "Y"; - this.cbEnhancedDocumentSync.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cbEnhancedDocumentSync.Location = new System.Drawing.Point(11, 10); - this.cbEnhancedDocumentSync.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbEnhancedDocumentSync.Name = "cbEnhancedDocumentSync"; - this.cbEnhancedDocumentSync.Size = new System.Drawing.Size(132, 23); - this.cbEnhancedDocumentSync.TabIndex = 9; - this.cbEnhancedDocumentSync.Text = "Sync Navigation"; - // - // gpPasteSettings - // - this.gpPasteSettings.BackColor = System.Drawing.Color.Transparent; - this.gpPasteSettings.CanvasColor = System.Drawing.SystemColors.Control; - this.gpPasteSettings.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpPasteSettings.Controls.Add(this.cbPastePlainText); - this.gpPasteSettings.Controls.Add(this.cbPasteNoReturns); - this.gpPasteSettings.DisabledBackColor = System.Drawing.Color.Empty; - this.gpPasteSettings.Location = new System.Drawing.Point(33, 310); - this.gpPasteSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpPasteSettings.Name = "gpPasteSettings"; - this.gpPasteSettings.Size = new System.Drawing.Size(159, 100); - // - // - // - this.gpPasteSettings.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpPasteSettings.Style.BackColorGradientAngle = 90; - this.gpPasteSettings.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpPasteSettings.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpPasteSettings.Style.BorderBottomWidth = 1; - this.gpPasteSettings.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpPasteSettings.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpPasteSettings.Style.BorderLeftWidth = 1; - this.gpPasteSettings.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpPasteSettings.Style.BorderRightWidth = 1; - this.gpPasteSettings.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpPasteSettings.Style.BorderTopWidth = 1; - this.gpPasteSettings.Style.CornerDiameter = 4; - this.gpPasteSettings.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpPasteSettings.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpPasteSettings.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpPasteSettings.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpPasteSettings.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpPasteSettings.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpPasteSettings.TabIndex = 8; - this.gpPasteSettings.Text = "Paste Settings"; - // - // cbPastePlainText - // - // - // - // - this.cbPastePlainText.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbPastePlainText.Checked = true; - this.cbPastePlainText.CheckState = System.Windows.Forms.CheckState.Checked; - this.cbPastePlainText.CheckValue = "Y"; - this.cbPastePlainText.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cbPastePlainText.Location = new System.Drawing.Point(11, 10); - this.cbPastePlainText.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbPastePlainText.Name = "cbPastePlainText"; - this.cbPastePlainText.Size = new System.Drawing.Size(123, 23); - this.cbPastePlainText.TabIndex = 9; - this.cbPastePlainText.Text = "Plain Text"; - this.cbPastePlainText.CheckedChanged += new System.EventHandler(this.cbPastePlainText_CheckedChanged); - // - // cbPasteNoReturns - // - // - // - // - this.cbPasteNoReturns.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbPasteNoReturns.Checked = true; - this.cbPasteNoReturns.CheckState = System.Windows.Forms.CheckState.Checked; - this.cbPasteNoReturns.CheckValue = "Y"; - this.cbPasteNoReturns.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cbPasteNoReturns.Location = new System.Drawing.Point(11, 34); - this.cbPasteNoReturns.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbPasteNoReturns.Name = "cbPasteNoReturns"; - this.cbPasteNoReturns.Size = new System.Drawing.Size(123, 23); - this.cbPasteNoReturns.TabIndex = 10; - this.cbPasteNoReturns.Text = "No Returns"; - this.cbPasteNoReturns.CheckedChanged += new System.EventHandler(this.cbPasteNoReturns_CheckedChanged); - // - // gpTreeView - // - this.gpTreeView.BackColor = System.Drawing.Color.Transparent; - this.gpTreeView.CanvasColor = System.Drawing.SystemColors.Control; - this.gpTreeView.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpTreeView.Controls.Add(this.cbTVExpand); - this.gpTreeView.DisabledBackColor = System.Drawing.Color.Empty; - this.gpTreeView.Location = new System.Drawing.Point(416, 203); - this.gpTreeView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpTreeView.Name = "gpTreeView"; - this.gpTreeView.Size = new System.Drawing.Size(159, 89); - // - // - // - this.gpTreeView.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpTreeView.Style.BackColorGradientAngle = 90; - this.gpTreeView.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpTreeView.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpTreeView.Style.BorderBottomWidth = 1; - this.gpTreeView.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpTreeView.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpTreeView.Style.BorderLeftWidth = 1; - this.gpTreeView.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpTreeView.Style.BorderRightWidth = 1; - this.gpTreeView.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpTreeView.Style.BorderTopWidth = 1; - this.gpTreeView.Style.CornerDiameter = 4; - this.gpTreeView.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpTreeView.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpTreeView.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpTreeView.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpTreeView.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpTreeView.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpTreeView.TabIndex = 6; - this.gpTreeView.Text = "Tree View"; - // - // cbTVExpand - // - // - // - // - this.cbTVExpand.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbTVExpand.Checked = true; - this.cbTVExpand.CheckState = System.Windows.Forms.CheckState.Checked; - this.cbTVExpand.CheckValue = "Y"; - this.cbTVExpand.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cbTVExpand.Location = new System.Drawing.Point(11, 16); - this.cbTVExpand.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbTVExpand.Name = "cbTVExpand"; - this.cbTVExpand.Size = new System.Drawing.Size(123, 23); - this.superTooltip1.SetSuperTooltip(this.cbTVExpand, new DevComponents.DotNetBar.SuperTooltipInfo("Remember Last", "", "When checked, PROMS will remember the last procedure you had seleced from the tre" + + this.txbxVisioPath.TabIndex = 0; + this.txbxVisioPath.WordWrap = false; + this.txbxVisioPath.Leave += new System.EventHandler(this.txbxVisioPath_Leave_1); + // + // gpSeparateWindows + // + this.gpSeparateWindows.BackColor = System.Drawing.Color.Transparent; + this.gpSeparateWindows.CanvasColor = System.Drawing.SystemColors.Control; + this.gpSeparateWindows.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpSeparateWindows.Controls.Add(this.cbSeparateWindows); + this.gpSeparateWindows.DisabledBackColor = System.Drawing.Color.Empty; + this.gpSeparateWindows.Location = new System.Drawing.Point(313, 252); + this.gpSeparateWindows.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpSeparateWindows.Name = "gpSeparateWindows"; + this.gpSeparateWindows.Size = new System.Drawing.Size(127, 81); + // + // + // + this.gpSeparateWindows.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpSeparateWindows.Style.BackColorGradientAngle = 90; + this.gpSeparateWindows.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpSeparateWindows.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpSeparateWindows.Style.BorderBottomWidth = 1; + this.gpSeparateWindows.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpSeparateWindows.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpSeparateWindows.Style.BorderLeftWidth = 1; + this.gpSeparateWindows.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpSeparateWindows.Style.BorderRightWidth = 1; + this.gpSeparateWindows.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpSeparateWindows.Style.BorderTopWidth = 1; + this.gpSeparateWindows.Style.CornerDiameter = 4; + this.gpSeparateWindows.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpSeparateWindows.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpSeparateWindows.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpSeparateWindows.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpSeparateWindows.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpSeparateWindows.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpSeparateWindows.TabIndex = 10; + this.gpSeparateWindows.Text = "Separate Windows"; + // + // cbSeparateWindows + // + // + // + // + this.cbSeparateWindows.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbSeparateWindows.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbSeparateWindows.Location = new System.Drawing.Point(8, 8); + this.cbSeparateWindows.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbSeparateWindows.Name = "cbSeparateWindows"; + this.cbSeparateWindows.Size = new System.Drawing.Size(107, 19); + this.cbSeparateWindows.TabIndex = 9; + this.cbSeparateWindows.Text = "By Procedure Set"; + this.cbSeparateWindows.CheckedChanged += new System.EventHandler(this.cbSeparateWindows_CheckedChanged); + // + // gpEnhancedDocs + // + this.gpEnhancedDocs.BackColor = System.Drawing.Color.Transparent; + this.gpEnhancedDocs.CanvasColor = System.Drawing.SystemColors.Control; + this.gpEnhancedDocs.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpEnhancedDocs.Controls.Add(this.cbEnhancedDocumentSync); + this.gpEnhancedDocs.DisabledBackColor = System.Drawing.Color.Empty; + this.gpEnhancedDocs.Location = new System.Drawing.Point(167, 252); + this.gpEnhancedDocs.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpEnhancedDocs.Name = "gpEnhancedDocs"; + this.gpEnhancedDocs.Size = new System.Drawing.Size(127, 81); + // + // + // + this.gpEnhancedDocs.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpEnhancedDocs.Style.BackColorGradientAngle = 90; + this.gpEnhancedDocs.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpEnhancedDocs.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpEnhancedDocs.Style.BorderBottomWidth = 1; + this.gpEnhancedDocs.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpEnhancedDocs.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpEnhancedDocs.Style.BorderLeftWidth = 1; + this.gpEnhancedDocs.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpEnhancedDocs.Style.BorderRightWidth = 1; + this.gpEnhancedDocs.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpEnhancedDocs.Style.BorderTopWidth = 1; + this.gpEnhancedDocs.Style.CornerDiameter = 4; + this.gpEnhancedDocs.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpEnhancedDocs.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpEnhancedDocs.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpEnhancedDocs.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpEnhancedDocs.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpEnhancedDocs.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpEnhancedDocs.TabIndex = 9; + this.gpEnhancedDocs.Text = "Enhanced Documents"; + // + // cbEnhancedDocumentSync + // + // + // + // + this.cbEnhancedDocumentSync.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbEnhancedDocumentSync.Checked = true; + this.cbEnhancedDocumentSync.CheckState = System.Windows.Forms.CheckState.Checked; + this.cbEnhancedDocumentSync.CheckValue = "Y"; + this.cbEnhancedDocumentSync.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbEnhancedDocumentSync.Location = new System.Drawing.Point(8, 8); + this.cbEnhancedDocumentSync.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbEnhancedDocumentSync.Name = "cbEnhancedDocumentSync"; + this.cbEnhancedDocumentSync.Size = new System.Drawing.Size(99, 19); + this.cbEnhancedDocumentSync.TabIndex = 9; + this.cbEnhancedDocumentSync.Text = "Sync Navigation"; + // + // gpPasteSettings + // + this.gpPasteSettings.BackColor = System.Drawing.Color.Transparent; + this.gpPasteSettings.CanvasColor = System.Drawing.SystemColors.Control; + this.gpPasteSettings.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpPasteSettings.Controls.Add(this.cbPastePlainText); + this.gpPasteSettings.Controls.Add(this.cbPasteNoReturns); + this.gpPasteSettings.DisabledBackColor = System.Drawing.Color.Empty; + this.gpPasteSettings.Location = new System.Drawing.Point(25, 252); + this.gpPasteSettings.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpPasteSettings.Name = "gpPasteSettings"; + this.gpPasteSettings.Size = new System.Drawing.Size(119, 81); + // + // + // + this.gpPasteSettings.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpPasteSettings.Style.BackColorGradientAngle = 90; + this.gpPasteSettings.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpPasteSettings.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpPasteSettings.Style.BorderBottomWidth = 1; + this.gpPasteSettings.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpPasteSettings.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpPasteSettings.Style.BorderLeftWidth = 1; + this.gpPasteSettings.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpPasteSettings.Style.BorderRightWidth = 1; + this.gpPasteSettings.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpPasteSettings.Style.BorderTopWidth = 1; + this.gpPasteSettings.Style.CornerDiameter = 4; + this.gpPasteSettings.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpPasteSettings.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpPasteSettings.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpPasteSettings.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpPasteSettings.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpPasteSettings.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpPasteSettings.TabIndex = 8; + this.gpPasteSettings.Text = "Paste Settings"; + // + // cbPastePlainText + // + // + // + // + this.cbPastePlainText.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbPastePlainText.Checked = true; + this.cbPastePlainText.CheckState = System.Windows.Forms.CheckState.Checked; + this.cbPastePlainText.CheckValue = "Y"; + this.cbPastePlainText.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbPastePlainText.Location = new System.Drawing.Point(8, 8); + this.cbPastePlainText.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbPastePlainText.Name = "cbPastePlainText"; + this.cbPastePlainText.Size = new System.Drawing.Size(92, 19); + this.cbPastePlainText.TabIndex = 9; + this.cbPastePlainText.Text = "Plain Text"; + this.cbPastePlainText.CheckedChanged += new System.EventHandler(this.cbPastePlainText_CheckedChanged); + // + // cbPasteNoReturns + // + // + // + // + this.cbPasteNoReturns.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbPasteNoReturns.Checked = true; + this.cbPasteNoReturns.CheckState = System.Windows.Forms.CheckState.Checked; + this.cbPasteNoReturns.CheckValue = "Y"; + this.cbPasteNoReturns.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbPasteNoReturns.Location = new System.Drawing.Point(8, 28); + this.cbPasteNoReturns.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbPasteNoReturns.Name = "cbPasteNoReturns"; + this.cbPasteNoReturns.Size = new System.Drawing.Size(92, 19); + this.cbPasteNoReturns.TabIndex = 10; + this.cbPasteNoReturns.Text = "No Returns"; + this.cbPasteNoReturns.CheckedChanged += new System.EventHandler(this.cbPasteNoReturns_CheckedChanged); + // + // gpTreeView + // + this.gpTreeView.BackColor = System.Drawing.Color.Transparent; + this.gpTreeView.CanvasColor = System.Drawing.SystemColors.Control; + this.gpTreeView.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpTreeView.Controls.Add(this.cbTVExpand); + this.gpTreeView.DisabledBackColor = System.Drawing.Color.Empty; + this.gpTreeView.Location = new System.Drawing.Point(312, 165); + this.gpTreeView.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpTreeView.Name = "gpTreeView"; + this.gpTreeView.Size = new System.Drawing.Size(119, 72); + // + // + // + this.gpTreeView.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpTreeView.Style.BackColorGradientAngle = 90; + this.gpTreeView.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpTreeView.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpTreeView.Style.BorderBottomWidth = 1; + this.gpTreeView.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpTreeView.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpTreeView.Style.BorderLeftWidth = 1; + this.gpTreeView.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpTreeView.Style.BorderRightWidth = 1; + this.gpTreeView.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpTreeView.Style.BorderTopWidth = 1; + this.gpTreeView.Style.CornerDiameter = 4; + this.gpTreeView.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpTreeView.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpTreeView.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpTreeView.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpTreeView.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpTreeView.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpTreeView.TabIndex = 6; + this.gpTreeView.Text = "Tree View"; + // + // cbTVExpand + // + // + // + // + this.cbTVExpand.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbTVExpand.Checked = true; + this.cbTVExpand.CheckState = System.Windows.Forms.CheckState.Checked; + this.cbTVExpand.CheckValue = "Y"; + this.cbTVExpand.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbTVExpand.Location = new System.Drawing.Point(8, 13); + this.cbTVExpand.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbTVExpand.Name = "cbTVExpand"; + this.cbTVExpand.Size = new System.Drawing.Size(92, 19); + this.superTooltip1.SetSuperTooltip(this.cbTVExpand, new DevComponents.DotNetBar.SuperTooltipInfo("Remember Last", "", "When checked, PROMS will remember the last procedure you had seleced from the tre" + "e and expand the tree to that location the next time PROMS is started.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(200, 130))); - this.cbTVExpand.TabIndex = 7; - this.cbTVExpand.Text = "Remember Last"; - this.cbTVExpand.CheckedChanged += new System.EventHandler(this.cbTVExpand_CheckedChanged); - // - // gpStepTypeToolTip - // - this.gpStepTypeToolTip.BackColor = System.Drawing.Color.Transparent; - this.gpStepTypeToolTip.CanvasColor = System.Drawing.SystemColors.Control; - this.gpStepTypeToolTip.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpStepTypeToolTip.Controls.Add(this.cbStepTypeToolTip); - this.gpStepTypeToolTip.DisabledBackColor = System.Drawing.Color.Empty; - this.gpStepTypeToolTip.Location = new System.Drawing.Point(223, 203); - this.gpStepTypeToolTip.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpStepTypeToolTip.Name = "gpStepTypeToolTip"; - this.gpStepTypeToolTip.Size = new System.Drawing.Size(159, 89); - // - // - // - this.gpStepTypeToolTip.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpStepTypeToolTip.Style.BackColorGradientAngle = 90; - this.gpStepTypeToolTip.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpStepTypeToolTip.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpStepTypeToolTip.Style.BorderBottomWidth = 1; - this.gpStepTypeToolTip.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpStepTypeToolTip.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpStepTypeToolTip.Style.BorderLeftWidth = 1; - this.gpStepTypeToolTip.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpStepTypeToolTip.Style.BorderRightWidth = 1; - this.gpStepTypeToolTip.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpStepTypeToolTip.Style.BorderTopWidth = 1; - this.gpStepTypeToolTip.Style.CornerDiameter = 4; - this.gpStepTypeToolTip.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpStepTypeToolTip.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpStepTypeToolTip.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpStepTypeToolTip.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpStepTypeToolTip.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpStepTypeToolTip.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpStepTypeToolTip.TabIndex = 5; - this.gpStepTypeToolTip.Text = "Step Type Tool Tip"; - // - // cbStepTypeToolTip - // - // - // - // - this.cbStepTypeToolTip.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbStepTypeToolTip.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cbStepTypeToolTip.Location = new System.Drawing.Point(11, 16); - this.cbStepTypeToolTip.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbStepTypeToolTip.Name = "cbStepTypeToolTip"; - this.cbStepTypeToolTip.Size = new System.Drawing.Size(123, 23); - this.cbStepTypeToolTip.TabIndex = 7; - this.cbStepTypeToolTip.Text = "Show Tool Tip"; - this.cbStepTypeToolTip.CheckedChanged += new System.EventHandler(this.cbStepTypeToolTip_CheckedChanged); - // - // gpAnnotationSettings - // - this.gpAnnotationSettings.BackColor = System.Drawing.Color.Transparent; - this.gpAnnotationSettings.CanvasColor = System.Drawing.SystemColors.Control; - this.gpAnnotationSettings.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpAnnotationSettings.Controls.Add(this.cbAnnotationPopup); - this.gpAnnotationSettings.DisabledBackColor = System.Drawing.Color.Empty; - this.gpAnnotationSettings.Location = new System.Drawing.Point(33, 203); - this.gpAnnotationSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpAnnotationSettings.Name = "gpAnnotationSettings"; - this.gpAnnotationSettings.Size = new System.Drawing.Size(159, 89); - // - // - // - this.gpAnnotationSettings.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpAnnotationSettings.Style.BackColorGradientAngle = 90; - this.gpAnnotationSettings.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpAnnotationSettings.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpAnnotationSettings.Style.BorderBottomWidth = 1; - this.gpAnnotationSettings.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpAnnotationSettings.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpAnnotationSettings.Style.BorderLeftWidth = 1; - this.gpAnnotationSettings.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpAnnotationSettings.Style.BorderRightWidth = 1; - this.gpAnnotationSettings.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpAnnotationSettings.Style.BorderTopWidth = 1; - this.gpAnnotationSettings.Style.CornerDiameter = 4; - this.gpAnnotationSettings.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpAnnotationSettings.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpAnnotationSettings.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpAnnotationSettings.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpAnnotationSettings.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpAnnotationSettings.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpAnnotationSettings.TabIndex = 4; - this.gpAnnotationSettings.Text = "Annotation Settings"; - // - // cbAnnotationPopup - // - // - // - // - this.cbAnnotationPopup.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbAnnotationPopup.Checked = true; - this.cbAnnotationPopup.CheckState = System.Windows.Forms.CheckState.Checked; - this.cbAnnotationPopup.CheckValue = "Y"; - this.cbAnnotationPopup.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.cbAnnotationPopup.Location = new System.Drawing.Point(11, 16); - this.cbAnnotationPopup.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbAnnotationPopup.Name = "cbAnnotationPopup"; - this.cbAnnotationPopup.Size = new System.Drawing.Size(123, 23); - this.cbAnnotationPopup.TabIndex = 7; - this.cbAnnotationPopup.Text = "Auto Popup"; - this.cbAnnotationPopup.CheckedChanged += new System.EventHandler(this.cbAnnotationPopup_CheckedChanged); - // - // gpTransRangeColor - // - this.gpTransRangeColor.BackColor = System.Drawing.Color.Transparent; - this.gpTransRangeColor.CanvasColor = System.Drawing.SystemColors.Control; - this.gpTransRangeColor.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpTransRangeColor.Controls.Add(this.colorPickerButton1); - this.gpTransRangeColor.DisabledBackColor = System.Drawing.Color.Empty; - this.gpTransRangeColor.Location = new System.Drawing.Point(650, 16); - this.gpTransRangeColor.Margin = new System.Windows.Forms.Padding(4); - this.gpTransRangeColor.Name = "gpTransRangeColor"; - this.gpTransRangeColor.Size = new System.Drawing.Size(195, 76); - // - // - // - this.gpTransRangeColor.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpTransRangeColor.Style.BackColorGradientAngle = 90; - this.gpTransRangeColor.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpTransRangeColor.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpTransRangeColor.Style.BorderBottomWidth = 1; - this.gpTransRangeColor.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpTransRangeColor.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpTransRangeColor.Style.BorderLeftWidth = 1; - this.gpTransRangeColor.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpTransRangeColor.Style.BorderRightWidth = 1; - this.gpTransRangeColor.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpTransRangeColor.Style.BorderTopWidth = 1; - this.gpTransRangeColor.Style.CornerDiameter = 4; - this.gpTransRangeColor.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpTransRangeColor.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpTransRangeColor.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpTransRangeColor.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpTransRangeColor.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpTransRangeColor.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpTransRangeColor.TabIndex = 3; - this.gpTransRangeColor.Text = "Transition Range Color"; - this.gpTransRangeColor.Visible = false; - // - // colorPickerButton1 - // - this.colorPickerButton1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.colorPickerButton1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.colorPickerButton1.Image = ((System.Drawing.Image)(resources.GetObject("colorPickerButton1.Image"))); - this.colorPickerButton1.Location = new System.Drawing.Point(9, 15); - this.colorPickerButton1.Margin = new System.Windows.Forms.Padding(4); - this.colorPickerButton1.Name = "colorPickerButton1"; - this.colorPickerButton1.SelectedColorImageRectangle = new System.Drawing.Rectangle(2, 2, 12, 12); - this.colorPickerButton1.Size = new System.Drawing.Size(137, 28); - this.colorPickerButton1.TabIndex = 0; - this.colorPickerButton1.SelectedColorChanged += new System.EventHandler(this.colorPickerButton1_SelectedColorChanged); - // - // gpPropPageStyle - // - this.gpPropPageStyle.BackColor = System.Drawing.Color.Transparent; - this.gpPropPageStyle.CanvasColor = System.Drawing.SystemColors.Control; - this.gpPropPageStyle.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.gpPropPageStyle.Controls.Add(this.cbPropGrid); - this.gpPropPageStyle.Controls.Add(this.cbTabbedIntrFace); - this.gpPropPageStyle.Controls.Add(this.cbButtonIntrFace); - this.gpPropPageStyle.DisabledBackColor = System.Drawing.Color.Empty; - this.gpPropPageStyle.Location = new System.Drawing.Point(207, 15); - this.gpPropPageStyle.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.gpPropPageStyle.Name = "gpPropPageStyle"; - this.gpPropPageStyle.Size = new System.Drawing.Size(169, 132); - // - // - // - this.gpPropPageStyle.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.gpPropPageStyle.Style.BackColorGradientAngle = 90; - this.gpPropPageStyle.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.gpPropPageStyle.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpPropPageStyle.Style.BorderBottomWidth = 1; - this.gpPropPageStyle.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.gpPropPageStyle.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpPropPageStyle.Style.BorderLeftWidth = 1; - this.gpPropPageStyle.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpPropPageStyle.Style.BorderRightWidth = 1; - this.gpPropPageStyle.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.gpPropPageStyle.Style.BorderTopWidth = 1; - this.gpPropPageStyle.Style.CornerDiameter = 4; - this.gpPropPageStyle.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.gpPropPageStyle.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.gpPropPageStyle.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.gpPropPageStyle.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - // - // - // - this.gpPropPageStyle.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; - // - // - // - this.gpPropPageStyle.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.gpPropPageStyle.TabIndex = 2; - this.gpPropPageStyle.Text = "Property Page Style"; - // - // cbPropGrid - // - // - // - // - this.cbPropGrid.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbPropGrid.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbPropGrid.Location = new System.Drawing.Point(11, 73); - this.cbPropGrid.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbPropGrid.Name = "cbPropGrid"; - this.cbPropGrid.Size = new System.Drawing.Size(129, 25); - this.cbPropGrid.TabIndex = 2; - this.cbPropGrid.Text = "Property Grid"; - this.cbPropGrid.Visible = false; - // - // cbTabbedIntrFace - // - // - // - // - this.cbTabbedIntrFace.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbTabbedIntrFace.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbTabbedIntrFace.Location = new System.Drawing.Point(11, 42); - this.cbTabbedIntrFace.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbTabbedIntrFace.Name = "cbTabbedIntrFace"; - this.cbTabbedIntrFace.Size = new System.Drawing.Size(148, 25); - this.cbTabbedIntrFace.TabIndex = 1; - this.cbTabbedIntrFace.Text = "Tabbed Interface"; - // - // cbButtonIntrFace - // - // - // - // - this.cbButtonIntrFace.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; - this.cbButtonIntrFace.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; - this.cbButtonIntrFace.Location = new System.Drawing.Point(11, 12); - this.cbButtonIntrFace.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.cbButtonIntrFace.Name = "cbButtonIntrFace"; - this.cbButtonIntrFace.Size = new System.Drawing.Size(129, 25); - this.cbButtonIntrFace.TabIndex = 0; - this.cbButtonIntrFace.Text = "Button Interface"; - // - // tiIntrFaceStngs - // - this.tiIntrFaceStngs.AttachedControl = this.tabControlPanel3; - this.tiIntrFaceStngs.Name = "tiIntrFaceStngs"; - this.tiIntrFaceStngs.Text = "My Interface Settings"; - // - // tabControlPanel1 - // - this.tabControlPanel1.DisabledBackColor = System.Drawing.Color.Empty; - this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel1.Location = new System.Drawing.Point(0, 27); - this.tabControlPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabControlPanel1.Name = "tabControlPanel1"; - this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel1.Size = new System.Drawing.Size(860, 535); - this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.SystemColors.Control; - this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) + this.cbTVExpand.TabIndex = 7; + this.cbTVExpand.Text = "Remember Last"; + this.cbTVExpand.CheckedChanged += new System.EventHandler(this.cbTVExpand_CheckedChanged); + // + // gpStepTypeToolTip + // + this.gpStepTypeToolTip.BackColor = System.Drawing.Color.Transparent; + this.gpStepTypeToolTip.CanvasColor = System.Drawing.SystemColors.Control; + this.gpStepTypeToolTip.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpStepTypeToolTip.Controls.Add(this.cbStepTypeToolTip); + this.gpStepTypeToolTip.DisabledBackColor = System.Drawing.Color.Empty; + this.gpStepTypeToolTip.Location = new System.Drawing.Point(167, 165); + this.gpStepTypeToolTip.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpStepTypeToolTip.Name = "gpStepTypeToolTip"; + this.gpStepTypeToolTip.Size = new System.Drawing.Size(119, 72); + // + // + // + this.gpStepTypeToolTip.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpStepTypeToolTip.Style.BackColorGradientAngle = 90; + this.gpStepTypeToolTip.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpStepTypeToolTip.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpStepTypeToolTip.Style.BorderBottomWidth = 1; + this.gpStepTypeToolTip.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpStepTypeToolTip.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpStepTypeToolTip.Style.BorderLeftWidth = 1; + this.gpStepTypeToolTip.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpStepTypeToolTip.Style.BorderRightWidth = 1; + this.gpStepTypeToolTip.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpStepTypeToolTip.Style.BorderTopWidth = 1; + this.gpStepTypeToolTip.Style.CornerDiameter = 4; + this.gpStepTypeToolTip.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpStepTypeToolTip.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpStepTypeToolTip.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpStepTypeToolTip.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpStepTypeToolTip.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpStepTypeToolTip.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpStepTypeToolTip.TabIndex = 5; + this.gpStepTypeToolTip.Text = "Step Type Tool Tip"; + // + // cbStepTypeToolTip + // + // + // + // + this.cbStepTypeToolTip.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbStepTypeToolTip.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbStepTypeToolTip.Location = new System.Drawing.Point(8, 13); + this.cbStepTypeToolTip.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbStepTypeToolTip.Name = "cbStepTypeToolTip"; + this.cbStepTypeToolTip.Size = new System.Drawing.Size(92, 19); + this.cbStepTypeToolTip.TabIndex = 7; + this.cbStepTypeToolTip.Text = "Show Tool Tip"; + this.cbStepTypeToolTip.CheckedChanged += new System.EventHandler(this.cbStepTypeToolTip_CheckedChanged); + // + // gpAnnotationSettings + // + this.gpAnnotationSettings.BackColor = System.Drawing.Color.Transparent; + this.gpAnnotationSettings.CanvasColor = System.Drawing.SystemColors.Control; + this.gpAnnotationSettings.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpAnnotationSettings.Controls.Add(this.cbAnnotationPopup); + this.gpAnnotationSettings.DisabledBackColor = System.Drawing.Color.Empty; + this.gpAnnotationSettings.Location = new System.Drawing.Point(25, 165); + this.gpAnnotationSettings.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpAnnotationSettings.Name = "gpAnnotationSettings"; + this.gpAnnotationSettings.Size = new System.Drawing.Size(119, 72); + // + // + // + this.gpAnnotationSettings.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpAnnotationSettings.Style.BackColorGradientAngle = 90; + this.gpAnnotationSettings.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpAnnotationSettings.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpAnnotationSettings.Style.BorderBottomWidth = 1; + this.gpAnnotationSettings.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpAnnotationSettings.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpAnnotationSettings.Style.BorderLeftWidth = 1; + this.gpAnnotationSettings.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpAnnotationSettings.Style.BorderRightWidth = 1; + this.gpAnnotationSettings.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpAnnotationSettings.Style.BorderTopWidth = 1; + this.gpAnnotationSettings.Style.CornerDiameter = 4; + this.gpAnnotationSettings.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpAnnotationSettings.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpAnnotationSettings.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpAnnotationSettings.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpAnnotationSettings.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpAnnotationSettings.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpAnnotationSettings.TabIndex = 4; + this.gpAnnotationSettings.Text = "Annotation Settings"; + // + // cbAnnotationPopup + // + // + // + // + this.cbAnnotationPopup.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbAnnotationPopup.Checked = true; + this.cbAnnotationPopup.CheckState = System.Windows.Forms.CheckState.Checked; + this.cbAnnotationPopup.CheckValue = "Y"; + this.cbAnnotationPopup.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbAnnotationPopup.Location = new System.Drawing.Point(8, 13); + this.cbAnnotationPopup.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbAnnotationPopup.Name = "cbAnnotationPopup"; + this.cbAnnotationPopup.Size = new System.Drawing.Size(92, 19); + this.cbAnnotationPopup.TabIndex = 7; + this.cbAnnotationPopup.Text = "Auto Popup"; + this.cbAnnotationPopup.CheckedChanged += new System.EventHandler(this.cbAnnotationPopup_CheckedChanged); + // + // gpTransRangeColor + // + this.gpTransRangeColor.BackColor = System.Drawing.Color.Transparent; + this.gpTransRangeColor.CanvasColor = System.Drawing.SystemColors.Control; + this.gpTransRangeColor.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpTransRangeColor.Controls.Add(this.colorPickerButton1); + this.gpTransRangeColor.DisabledBackColor = System.Drawing.Color.Empty; + this.gpTransRangeColor.Location = new System.Drawing.Point(488, 13); + this.gpTransRangeColor.Name = "gpTransRangeColor"; + this.gpTransRangeColor.Size = new System.Drawing.Size(146, 62); + // + // + // + this.gpTransRangeColor.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpTransRangeColor.Style.BackColorGradientAngle = 90; + this.gpTransRangeColor.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpTransRangeColor.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpTransRangeColor.Style.BorderBottomWidth = 1; + this.gpTransRangeColor.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpTransRangeColor.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpTransRangeColor.Style.BorderLeftWidth = 1; + this.gpTransRangeColor.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpTransRangeColor.Style.BorderRightWidth = 1; + this.gpTransRangeColor.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpTransRangeColor.Style.BorderTopWidth = 1; + this.gpTransRangeColor.Style.CornerDiameter = 4; + this.gpTransRangeColor.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpTransRangeColor.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpTransRangeColor.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpTransRangeColor.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpTransRangeColor.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpTransRangeColor.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpTransRangeColor.TabIndex = 3; + this.gpTransRangeColor.Text = "Transition Range Color"; + this.gpTransRangeColor.Visible = false; + // + // colorPickerButton1 + // + this.colorPickerButton1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.colorPickerButton1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.colorPickerButton1.Image = ((System.Drawing.Image)(resources.GetObject("colorPickerButton1.Image"))); + this.colorPickerButton1.Location = new System.Drawing.Point(7, 12); + this.colorPickerButton1.Name = "colorPickerButton1"; + this.colorPickerButton1.SelectedColorImageRectangle = new System.Drawing.Rectangle(2, 2, 12, 12); + this.colorPickerButton1.Size = new System.Drawing.Size(103, 23); + this.colorPickerButton1.TabIndex = 0; + this.colorPickerButton1.SelectedColorChanged += new System.EventHandler(this.colorPickerButton1_SelectedColorChanged); + // + // gpPropPageStyle + // + this.gpPropPageStyle.BackColor = System.Drawing.Color.Transparent; + this.gpPropPageStyle.CanvasColor = System.Drawing.SystemColors.Control; + this.gpPropPageStyle.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpPropPageStyle.Controls.Add(this.cbPropGrid); + this.gpPropPageStyle.Controls.Add(this.cbTabbedIntrFace); + this.gpPropPageStyle.Controls.Add(this.cbButtonIntrFace); + this.gpPropPageStyle.DisabledBackColor = System.Drawing.Color.Empty; + this.gpPropPageStyle.Location = new System.Drawing.Point(155, 12); + this.gpPropPageStyle.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.gpPropPageStyle.Name = "gpPropPageStyle"; + this.gpPropPageStyle.Size = new System.Drawing.Size(127, 107); + // + // + // + this.gpPropPageStyle.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpPropPageStyle.Style.BackColorGradientAngle = 90; + this.gpPropPageStyle.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpPropPageStyle.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpPropPageStyle.Style.BorderBottomWidth = 1; + this.gpPropPageStyle.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpPropPageStyle.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpPropPageStyle.Style.BorderLeftWidth = 1; + this.gpPropPageStyle.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpPropPageStyle.Style.BorderRightWidth = 1; + this.gpPropPageStyle.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpPropPageStyle.Style.BorderTopWidth = 1; + this.gpPropPageStyle.Style.CornerDiameter = 4; + this.gpPropPageStyle.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpPropPageStyle.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpPropPageStyle.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpPropPageStyle.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpPropPageStyle.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpPropPageStyle.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpPropPageStyle.TabIndex = 2; + this.gpPropPageStyle.Text = "Property Page Style"; + // + // cbPropGrid + // + // + // + // + this.cbPropGrid.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbPropGrid.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbPropGrid.Location = new System.Drawing.Point(8, 59); + this.cbPropGrid.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbPropGrid.Name = "cbPropGrid"; + this.cbPropGrid.Size = new System.Drawing.Size(97, 20); + this.cbPropGrid.TabIndex = 2; + this.cbPropGrid.Text = "Property Grid"; + this.cbPropGrid.Visible = false; + // + // cbTabbedIntrFace + // + // + // + // + this.cbTabbedIntrFace.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbTabbedIntrFace.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbTabbedIntrFace.Location = new System.Drawing.Point(8, 34); + this.cbTabbedIntrFace.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbTabbedIntrFace.Name = "cbTabbedIntrFace"; + this.cbTabbedIntrFace.Size = new System.Drawing.Size(111, 20); + this.cbTabbedIntrFace.TabIndex = 1; + this.cbTabbedIntrFace.Text = "Tabbed Interface"; + // + // cbButtonIntrFace + // + // + // + // + this.cbButtonIntrFace.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbButtonIntrFace.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton; + this.cbButtonIntrFace.Location = new System.Drawing.Point(8, 10); + this.cbButtonIntrFace.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbButtonIntrFace.Name = "cbButtonIntrFace"; + this.cbButtonIntrFace.Size = new System.Drawing.Size(97, 20); + this.cbButtonIntrFace.TabIndex = 0; + this.cbButtonIntrFace.Text = "Button Interface"; + // + // tiIntrFaceStngs + // + this.tiIntrFaceStngs.AttachedControl = this.tabControlPanel3; + this.tiIntrFaceStngs.Name = "tiIntrFaceStngs"; + this.tiIntrFaceStngs.Text = "My Interface Settings"; + // + // tabControlPanel1 + // + this.tabControlPanel1.DisabledBackColor = System.Drawing.Color.Empty; + this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel1.Location = new System.Drawing.Point(0, 27); + this.tabControlPanel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel1.Name = "tabControlPanel1"; + this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel1.Size = new System.Drawing.Size(645, 430); + this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.SystemColors.Control; + this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.tabControlPanel1.Style.GradientAngle = 90; - this.tabControlPanel1.TabIndex = 1; - this.tabControlPanel1.TabItem = this.tiGeneral; - this.tabControlPanel1.ThemeAware = true; - // - // tiGeneral - // - this.tiGeneral.AttachedControl = this.tabControlPanel1; - this.tiGeneral.Name = "tiGeneral"; - this.tiGeneral.Text = "General"; - this.tiGeneral.Visible = false; - // - // tabControlPanel2 - // - this.tabControlPanel2.DisabledBackColor = System.Drawing.Color.Empty; - this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel2.Location = new System.Drawing.Point(0, 27); - this.tabControlPanel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.tabControlPanel2.Name = "tabControlPanel2"; - this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel2.Size = new System.Drawing.Size(860, 535); - this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.SystemColors.Control; - this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) + this.tabControlPanel1.Style.GradientAngle = 90; + this.tabControlPanel1.TabIndex = 1; + this.tabControlPanel1.TabItem = this.tiGeneral; + this.tabControlPanel1.ThemeAware = true; + // + // tiGeneral + // + this.tiGeneral.AttachedControl = this.tabControlPanel1; + this.tiGeneral.Name = "tiGeneral"; + this.tiGeneral.Text = "General"; + this.tiGeneral.Visible = false; + // + // tabControlPanel2 + // + this.tabControlPanel2.DisabledBackColor = System.Drawing.Color.Empty; + this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel2.Location = new System.Drawing.Point(0, 27); + this.tabControlPanel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel2.Name = "tabControlPanel2"; + this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel2.Size = new System.Drawing.Size(645, 430); + this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.SystemColors.Control; + this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.tabControlPanel2.Style.GradientAngle = 90; - this.tabControlPanel2.TabIndex = 2; - this.tabControlPanel2.TabItem = this.tiStUpMsg; - this.tabControlPanel2.ThemeAware = true; - // - // tiStUpMsg - // - this.tiStUpMsg.AttachedControl = this.tabControlPanel2; - this.tiStUpMsg.Name = "tiStUpMsg"; - this.tiStUpMsg.Text = "Startup Message"; - this.tiStUpMsg.Visible = false; - // - // btnReset - // - this.btnReset.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnReset.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnReset.Location = new System.Drawing.Point(259, 606); - this.btnReset.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.btnReset.Name = "btnReset"; - this.btnReset.RightToLeft = System.Windows.Forms.RightToLeft.Yes; - this.btnReset.Size = new System.Drawing.Size(105, 23); - this.superTooltip1.SetSuperTooltip(this.btnReset, new DevComponents.DotNetBar.SuperTooltipInfo("Default Settings", "", "This will reset saved user settings back to the Proms system default.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(140, 95))); - this.btnReset.TabIndex = 3; - this.btnReset.Text = "Default Settings"; - this.btnReset.Click += new System.EventHandler(this.btnReset_Click); - // - // superTooltip1 - // - this.superTooltip1.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray); - this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; - // - // frmSysOptions - // - this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.btnCancel; - this.ClientSize = new System.Drawing.Size(932, 640); - this.ControlBox = false; - this.Controls.Add(this.btnReset); - this.Controls.Add(this.tcSysOpts); - this.Controls.Add(this.panButtons); - this.Controls.Add(this.btnOK); - this.Controls.Add(this.btnCancel); - this.DoubleBuffered = true; - this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); - this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); - this.Name = "frmSysOptions"; - this.Text = "Proms System Options"; - this.Load += new System.EventHandler(this.frmSysOptions_Load); - this.gpSystemColor.ResumeLayout(false); - this.panButtons.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.tcSysOpts)).EndInit(); - this.tcSysOpts.ResumeLayout(false); - this.tabControlPanel3.ResumeLayout(false); - this.grPanUCFImpOpt.ResumeLayout(false); - this.gpVisioPath.ResumeLayout(false); - this.gpSeparateWindows.ResumeLayout(false); - this.gpEnhancedDocs.ResumeLayout(false); - this.gpPasteSettings.ResumeLayout(false); - this.gpTreeView.ResumeLayout(false); - this.gpStepTypeToolTip.ResumeLayout(false); - this.gpAnnotationSettings.ResumeLayout(false); - this.gpTransRangeColor.ResumeLayout(false); - this.gpPropPageStyle.ResumeLayout(false); - this.ResumeLayout(false); + this.tabControlPanel2.Style.GradientAngle = 90; + this.tabControlPanel2.TabIndex = 2; + this.tabControlPanel2.TabItem = this.tiStUpMsg; + this.tabControlPanel2.ThemeAware = true; + // + // tiStUpMsg + // + this.tiStUpMsg.AttachedControl = this.tabControlPanel2; + this.tiStUpMsg.Name = "tiStUpMsg"; + this.tiStUpMsg.Text = "Startup Message"; + this.tiStUpMsg.Visible = false; + // + // btnReset + // + this.btnReset.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnReset.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnReset.Location = new System.Drawing.Point(194, 492); + this.btnReset.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnReset.Name = "btnReset"; + this.btnReset.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.btnReset.Size = new System.Drawing.Size(79, 19); + this.superTooltip1.SetSuperTooltip(this.btnReset, new DevComponents.DotNetBar.SuperTooltipInfo("Default Settings", "", "This will reset saved user settings back to the Proms system default.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(140, 95))); + this.btnReset.TabIndex = 3; + this.btnReset.Text = "Default Settings"; + this.btnReset.Click += new System.EventHandler(this.btnReset_Click); + // + // superTooltip1 + // + this.superTooltip1.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray); + this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; + // + // cbOTRemember + // + // + // + // + this.cbOTRemember.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbOTRemember.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbOTRemember.Location = new System.Drawing.Point(8, 5); + this.cbOTRemember.Margin = new System.Windows.Forms.Padding(2); + this.cbOTRemember.Name = "cbOTRemember"; + this.cbOTRemember.Size = new System.Drawing.Size(119, 19); + this.cbOTRemember.TabIndex = 9; + this.cbOTRemember.Text = "Remember Setting"; + this.cbOTRemember.CheckedChanged += new System.EventHandler(this.cbOTRemember_CheckedChanged); + // + // cbOTAutoOpen + // + // + // + // + this.cbOTAutoOpen.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.cbOTAutoOpen.Enabled = false; + this.cbOTAutoOpen.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.cbOTAutoOpen.Location = new System.Drawing.Point(8, 28); + this.cbOTAutoOpen.Margin = new System.Windows.Forms.Padding(2); + this.cbOTAutoOpen.Name = "cbOTAutoOpen"; + this.cbOTAutoOpen.Size = new System.Drawing.Size(92, 19); + this.cbOTAutoOpen.TabIndex = 10; + this.cbOTAutoOpen.Text = "Auto Open"; + this.cbOTAutoOpen.Visible = false; + // + // gpOpenTabs + // + this.gpOpenTabs.BackColor = System.Drawing.Color.Transparent; + this.gpOpenTabs.CanvasColor = System.Drawing.SystemColors.Control; + this.gpOpenTabs.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.gpOpenTabs.Controls.Add(this.cbOTRemember); + this.gpOpenTabs.Controls.Add(this.cbOTAutoOpen); + this.gpOpenTabs.DisabledBackColor = System.Drawing.Color.Empty; + this.gpOpenTabs.Location = new System.Drawing.Point(462, 252); + this.gpOpenTabs.Margin = new System.Windows.Forms.Padding(2); + this.gpOpenTabs.Name = "gpOpenTabs"; + this.gpOpenTabs.Size = new System.Drawing.Size(139, 81); + // + // + // + this.gpOpenTabs.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.gpOpenTabs.Style.BackColorGradientAngle = 90; + this.gpOpenTabs.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.gpOpenTabs.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpOpenTabs.Style.BorderBottomWidth = 1; + this.gpOpenTabs.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.gpOpenTabs.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpOpenTabs.Style.BorderLeftWidth = 1; + this.gpOpenTabs.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpOpenTabs.Style.BorderRightWidth = 1; + this.gpOpenTabs.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.gpOpenTabs.Style.BorderTopWidth = 1; + this.gpOpenTabs.Style.CornerDiameter = 4; + this.gpOpenTabs.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.gpOpenTabs.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.gpOpenTabs.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.gpOpenTabs.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + // + // + // + this.gpOpenTabs.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square; + // + // + // + this.gpOpenTabs.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square; + this.gpOpenTabs.TabIndex = 13; + this.gpOpenTabs.Text = "Open Tabs"; + // + // frmSysOptions + // + this.AcceptButton = this.btnOK; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CancelButton = this.btnCancel; + this.ClientSize = new System.Drawing.Size(699, 520); + this.ControlBox = false; + this.Controls.Add(this.btnReset); + this.Controls.Add(this.tcSysOpts); + this.Controls.Add(this.panButtons); + this.Controls.Add(this.btnOK); + this.Controls.Add(this.btnCancel); + this.DoubleBuffered = true; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.Name = "frmSysOptions"; + this.Text = "Proms System Options"; + this.Load += new System.EventHandler(this.frmSysOptions_Load); + this.gpSystemColor.ResumeLayout(false); + this.panButtons.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.tcSysOpts)).EndInit(); + this.tcSysOpts.ResumeLayout(false); + this.tabControlPanel3.ResumeLayout(false); + this.grPanUCFImpOpt.ResumeLayout(false); + this.gpVisioPath.ResumeLayout(false); + this.gpSeparateWindows.ResumeLayout(false); + this.gpEnhancedDocs.ResumeLayout(false); + this.gpPasteSettings.ResumeLayout(false); + this.gpTreeView.ResumeLayout(false); + this.gpStepTypeToolTip.ResumeLayout(false); + this.gpAnnotationSettings.ResumeLayout(false); + this.gpTransRangeColor.ResumeLayout(false); + this.gpPropPageStyle.ResumeLayout(false); + this.gpOpenTabs.ResumeLayout(false); + this.ResumeLayout(false); } @@ -1189,9 +1267,8 @@ namespace VEPROMS private DevComponents.DotNetBar.Controls.CheckBoxX cbUCFLOnlyImport; private DevComponents.DotNetBar.Controls.CheckBoxX cbUCFLNotUsed; private DevComponents.DotNetBar.Controls.CheckBoxX cbUCFIgnore; - - - - - } + private DevComponents.DotNetBar.Controls.GroupPanel gpOpenTabs; + private DevComponents.DotNetBar.Controls.CheckBoxX cbOTRemember; + private DevComponents.DotNetBar.Controls.CheckBoxX cbOTAutoOpen; + } } diff --git a/PROMS/VEPROMS User Interface/frmSysOptions.cs b/PROMS/VEPROMS User Interface/frmSysOptions.cs index 102240a3..43d5e349 100644 --- a/PROMS/VEPROMS User Interface/frmSysOptions.cs +++ b/PROMS/VEPROMS User Interface/frmSysOptions.cs @@ -11,6 +11,7 @@ using DevComponents.DotNetBar; using VEPROMS.Properties; using Volian.Base.Library; using DescriptiveEnum; +using VEPROMS.CSLA.Library; namespace VEPROMS { @@ -24,6 +25,9 @@ namespace VEPROMS get { return _CanChangeSeparateWindowsSetting; } set { _CanChangeSeparateWindowsSetting = value; } } + + private UserSettings _usersettings; + public frmSysOptions() { _initializing = true; @@ -89,6 +93,13 @@ namespace VEPROMS break; } + //CSM - C2024-031 - Getting User Settings + //and set checkboxes based on what they are set to + _usersettings = new UserSettings(VlnSettings.UserID); + cbOTRemember.Checked = _usersettings.UserSetting_OpenTabs_Remember; + cbOTAutoOpen.Enabled = cbOTAutoOpen.Visible = cbOTRemember.Checked; + cbOTAutoOpen.Checked = _usersettings.UserSetting_OpenTabs_AutoOpen || !cbOTRemember.Checked; + } private void cbEnhancedDocumentSync_CheckedChanged(object sender, System.EventArgs e) { @@ -151,6 +162,15 @@ namespace VEPROMS Settings.Default.PropPageStyle = 3; Settings.Default.Save(); + //CSM - C2024-031 - Save User Settings + //based on what checkboxes are set to + bool? OTAuto = null; + if (cbOTRemember.Checked) + { + OTAuto = cbOTAutoOpen.Checked; + } + _usersettings.SetUserSettings(cbOTRemember.Checked, OTAuto); + this.DialogResult = DialogResult.OK; this.Close(); } @@ -324,5 +344,10 @@ namespace VEPROMS Settings.Default.UCFImportOpt = 4; } } - } + + private void cbOTRemember_CheckedChanged(object sender, EventArgs e) + { + cbOTAutoOpen.Enabled = cbOTAutoOpen.Visible = cbOTRemember.Checked; + } + } } \ No newline at end of file diff --git a/PROMS/VEPROMS User Interface/frmSysOptions.resx b/PROMS/VEPROMS User Interface/frmSysOptions.resx index c04fcc7f..d4747b7a 100644 --- a/PROMS/VEPROMS User Interface/frmSysOptions.resx +++ b/PROMS/VEPROMS User Interface/frmSysOptions.resx @@ -112,21 +112,20 @@ 2.0 - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + 17, 17 - + - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScQAA - EnEB89x6jgAAACpJREFUOE9j+P//P0UYQgApcjCKASCaFDxqwKgBIDwcDSAHww0gH/9nAACxLJWH1IMf - ngAAAABJRU5ErkJggg== + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 + JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAABJxAAAScQHz3HqOAAAAKklE + QVQ4T2P4//8/RRhCAClyMIoBIJoUPGrAqAEgPBwNIAfDDSAf/2cAALEslYfUgx+eAAAAAElFTkSuQmCC diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.cs index e836a859..378769a5 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.cs +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.cs @@ -2355,17 +2355,37 @@ namespace VEPROMS { // Retrieve edit tab state from database. DataTable DisPlayTabState = VEPROMS.CSLA.Library.Item.GetDisplayTabs(VlnSettings.UserID); - - if (DisPlayTabState.Rows.Count > 0) + + //CSM - C2024-031 - Getting User Settings + //and set checkboxes based on what they are set to + UserSettings usersettings = new UserSettings(VlnSettings.UserID); + + if (DisPlayTabState.Rows.Count > 0 && (usersettings.UserSetting_OpenTabs_AutoOpen || !usersettings.UserSetting_OpenTabs_Remember)) { - foreach (DataRow TabState in DisPlayTabState.Rows) + //will open tabs by default / ask by default + DialogResult result = DialogResult.Yes; + if (!usersettings.UserSetting_OpenTabs_Remember) { - int _ItemID = (int)TabState["ItemID"]; - ItemInfo _Procedure = ItemInfo.Get(_ItemID); - // Open procedure in the editor. - OpenItem(_Procedure); - // SelectedStepTabPanel needs to be set so the print buttons on the ribbon will work. - SelectedStepTabPanel = tc.MyEditItem.MyStepPanel.MyStepTabPanel; + dlgCheckOpenTabs checkOpenTabs = new dlgCheckOpenTabs(); + result = checkOpenTabs.ShowDialog(); + + //if checkbox was checked in form, then update User Settings in database + if (checkOpenTabs.Remember) + usersettings.SetUserSettings(true, result == DialogResult.Yes); + } + + + if (result == DialogResult.Yes) + { + foreach (DataRow TabState in DisPlayTabState.Rows) + { + int _ItemID = (int)TabState["ItemID"]; + ItemInfo _Procedure = ItemInfo.Get(_ItemID); + // Open procedure in the editor. + OpenItem(_Procedure); + // SelectedStepTabPanel needs to be set so the print buttons on the ribbon will work. + SelectedStepTabPanel = tc.MyEditItem.MyStepPanel.MyStepTabPanel; + } } } } diff --git a/PROMS/VEPROMS.CSLA.Library/Minimal/UserSettings.cs b/PROMS/VEPROMS.CSLA.Library/Minimal/UserSettings.cs new file mode 100644 index 00000000..3c93d77f --- /dev/null +++ b/PROMS/VEPROMS.CSLA.Library/Minimal/UserSettings.cs @@ -0,0 +1,91 @@ +using System; +using Csla.Data; +using System.Data; +using System.Data.SqlClient; + +//CSM - C2024-031 - Minimal Class for Saving / Getting User Settings +//For Use with getting / saving if a User wishes to have tabs kept open +namespace VEPROMS.CSLA.Library +{ + public class UserSettings + { + #region Private Properties + private readonly string _userid; + #endregion + + #region Public Properties + public bool UserSetting_OpenTabs_Remember { get; protected set; } = false; + public bool UserSetting_OpenTabs_AutoOpen { get; protected set; } = true; + #endregion + + + #region Constructor + public UserSettings(string UserID) + { + _userid = UserID; + + try + { + using (SqlConnection cn = Database.VEPROMS_SqlConnection) + { + using (SqlCommand cm = cn.CreateCommand()) + { + cm.CommandType = CommandType.Text; + cm.CommandText = "Select RememberOpenTabs, AutoOpenTabs FROM Users where UserID = @UID"; + cm.Parameters.AddWithValue("@UID", _userid); + cm.CommandTimeout = Database.DefaultTimeout; + using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader())) + { + if (dr.Read()) + { + UserSetting_OpenTabs_Remember = (bool) dr.GetValue("RememberOpenTabs"); + UserSetting_OpenTabs_AutoOpen = (bool) dr.GetValue("AutoOpenTabs"); + } + } + } + } + } + catch (Exception ex) + { + Database.LogException("UserSettings_GetData", ex); + throw new DbCslaException("UserSettings_GetData", ex); + } + + } + #endregion + + #region Save Properties + public void SetUserSettings(bool OpenTabs_Remember, bool? OpenTabs_AutoOpen = null) + { + try + { + using (SqlConnection cn = Database.VEPROMS_SqlConnection) + { + using (SqlCommand cm = cn.CreateCommand()) + { + cm.CommandType = CommandType.StoredProcedure; + cm.CommandText = "vesp_UpdateUserSettings"; + cm.Parameters.AddWithValue("@UID", _userid); + UserSetting_OpenTabs_Remember = OpenTabs_Remember; + cm.Parameters.AddWithValue("@Remember", OpenTabs_Remember); + if (OpenTabs_AutoOpen != null) + { + UserSetting_OpenTabs_AutoOpen = (bool) OpenTabs_AutoOpen; + cm.Parameters.AddWithValue("@AutoOpen", OpenTabs_AutoOpen); + } + cm.CommandTimeout = Database.DefaultTimeout; + + cm.ExecuteNonQuery(); + } + } + } + catch (Exception ex) + { + Database.LogException("UserSettings_SetUserSettings", ex); + throw new DbCslaException("UserSettings_SetUserSettings", ex); + } + + } + #endregion + } +} diff --git a/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj b/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj index 771b155f..36cf1765 100644 --- a/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj +++ b/PROMS/VEPROMS.CSLA.Library/VEPROMS.CSLA.Library.csproj @@ -380,6 +380,7 @@ + From ca4b21e593aef01f1ff018d4e01e884ad392df6f Mon Sep 17 00:00:00 2001 From: John Jenko Date: Mon, 28 Oct 2024 13:59:14 -0400 Subject: [PATCH 29/32] F2024-079 - Set the flag to not uppercase the procedure and section titles in transitions in the background formats to make it consistent with the other Beaver Valley formats. --- PROMS/Formats/fmtall/BVPSAOPDEVall.xml | Bin 41450 -> 41498 bytes PROMS/Formats/fmtall/BVPSBCKall.xml | Bin 73352 -> 73400 bytes PROMS/Formats/fmtall/BVPSDEVall.xml | Bin 41450 -> 41498 bytes PROMS/Formats/fmtall/BVPSFlexDEVall.xml | Bin 39714 -> 39762 bytes PROMS/Formats/fmtall/BVPSNIBCKall.xml | Bin 71408 -> 71456 bytes PROMS/Formats/fmtall/BVPSSAMGBCKall.xml | Bin 70508 -> 70556 bytes PROMS/Formats/fmtall/BVPSSAMGDEVall.xml | Bin 41456 -> 41504 bytes 7 files changed, 0 insertions(+), 0 deletions(-) diff --git a/PROMS/Formats/fmtall/BVPSAOPDEVall.xml b/PROMS/Formats/fmtall/BVPSAOPDEVall.xml index e56580125cf53a9f396a2677a44e2fc8dd7bad45..48e960601be514ac5065f57bdbe194f2622af90e 100644 GIT binary patch delta 32 ocmaELm}%A#rVVBloC*xi42cW{48@cC%cUoW6$@>)saU580K&WregFUf delta 18 acmbPrgz42`rVVBllYO{FHdj?F&;$TbP6yfm diff --git a/PROMS/Formats/fmtall/BVPSBCKall.xml b/PROMS/Formats/fmtall/BVPSBCKall.xml index 4cb37e4ec341944807b3c4560ec2f0987f2d0214..dae6f39c49bccf8632d6bdf3b73dd0956c6c8062 100644 GIT binary patch delta 34 scmV+-0NwwHy#%lMsvyv+R(ZjR3?BY5)KL delta 18 acmdn7m!)Gb%Z3LNCZ9;;*(@`0PA>pik_j{b diff --git a/PROMS/Formats/fmtall/BVPSDEVall.xml b/PROMS/Formats/fmtall/BVPSDEVall.xml index d53e25ef46bde58a0d8394bbf8b4a767cd70c50b..45236c45595471dcda53e3ab803e56393150172e 100644 GIT binary patch delta 32 ocmaELm}%A#rVVBloC*xi42cW{48@cC%cUoW6$@>)saU580K&WregFUf delta 18 acmbPrgz42`rVVBllYO{FHdj?F&;$TbP6yfm diff --git a/PROMS/Formats/fmtall/BVPSFlexDEVall.xml b/PROMS/Formats/fmtall/BVPSFlexDEVall.xml index 6c54c6360027dc7ce2c35844329f772e3a5f62cb..6fd10bd4fbb60ad5765fe4f168d6d623606b9a64 100644 GIT binary patch delta 50 zcmV-20L}lRwgS?&0 diff --git a/PROMS/Formats/fmtall/BVPSNIBCKall.xml b/PROMS/Formats/fmtall/BVPSNIBCKall.xml index 3da88dc08dce3fd599173621f048b8638795b8bc..27cdb1ea2c6f5c982b6ffdd9431cf889e1b2a4e0 100644 GIT binary patch delta 66 zcmeycmSw>@mJLz;)A$+L#0waT8A2F}7!n!sfUHc05+KfJ$eX-TOL%evKi}k4GleEk TSPH~O9Fq@BQrf(&->Mw|$@>=W delta 14 WcmZ3mj^)EzmJLz;o4fj_wF3Y*VFz{q diff --git a/PROMS/Formats/fmtall/BVPSSAMGBCKall.xml b/PROMS/Formats/fmtall/BVPSSAMGBCKall.xml index 6dad967c974651b3571b5dcd8011002de71e6921..deb0bf5b1e38f8c40e400e3a7eae106a4d1d1b2a 100644 GIT binary patch delta 42 zcmV+_0M-BOrUaa)1hD3dlTiN#18@LylRt|alT;5HlS+>glN_QFlR#|kQXaWE>(gyGV From 3c7563775277a31c9b901369791da6f6ccb78b44 Mon Sep 17 00:00:00 2001 From: mschill Date: Tue, 29 Oct 2024 07:54:50 -0400 Subject: [PATCH 30/32] =?UTF-8?q?C2024-033=20RO=20Editor=20=E2=80=93=20Cla?= =?UTF-8?q?rify=20wording=20presented=20to=20user=20when=20utilizing=20new?= =?UTF-8?q?=20Move=20RO=20feature=20in=20RO=20Editor.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs index 4cf8fc47..c4c782d3 100644 --- a/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs +++ b/PROMS/ReferencedObjects/Exe/RefObj/ROEditor/ROEditor.cs @@ -1673,9 +1673,9 @@ namespace ROEditor { ROCutWasSelected = true; - string msgstr = "It is recommended that after moving ROs, you create a FST an use it to update RO Values in PROMS to ensure RO Links properly move to the new location as well.\n\n Are you sure you wish to move the RO(s)?"; + string msgstr = "It is recommended that after moving ROs, you create a FST and use it to update RO Values in PROMS to ensure RO Links properly move to the new location as well.\n\n Are you sure you wish to move the RO(s)?"; - DialogResult AnswerYN = MessageBox.Show(msgstr, "RO Editor", MessageBoxButtons.YesNo); + DialogResult AnswerYN = MessageBox.Show(msgstr, "Moving ROs", MessageBoxButtons.YesNo); if (AnswerYN != DialogResult.Yes) ROCutWasSelected = false; From 0e4ce996127d85b3a550638a783c660225243c9f Mon Sep 17 00:00:00 2001 From: John Jenko Date: Tue, 29 Oct 2024 09:40:00 -0400 Subject: [PATCH 31/32] F2024-082 - Added Dump, Modulate, Observe, Return, Proceed, Direct to the replace words list in all of the Farley formats --- PROMS/Formats/fmtall/FNPCASall.xml | Bin 67774 -> 69870 bytes PROMS/Formats/fmtall/FNPDEVall.xml | Bin 104208 -> 106304 bytes PROMS/Formats/fmtall/FNPEBKall.xml | Bin 90632 -> 92728 bytes PROMS/Formats/fmtall/FNPSAM1all.xml | Bin 139938 -> 142034 bytes PROMS/Formats/fmtall/FNP_00all.xml | Bin 82278 -> 84374 bytes PROMS/Formats/fmtall/FNP_01all.xml | Bin 79644 -> 81740 bytes PROMS/Formats/fmtall/FNPall.xml | Bin 172232 -> 174264 bytes PROMS/Formats/fmtall/fnpnmpall.xml | Bin 108710 -> 110806 bytes 8 files changed, 0 insertions(+), 0 deletions(-) diff --git a/PROMS/Formats/fmtall/FNPCASall.xml b/PROMS/Formats/fmtall/FNPCASall.xml index 2490b91694ac178a73955a7c7fbedc0ce923410d..678f0b5ae63af53dde071575603aba358808b3ce 100644 GIT binary patch delta 218 zcmdltk>%Y&mJOE*SyLEF8FD5w253(zVu5lL{mydcGUPMBrI2_)xy|PaCD_=D8B!UF z7|JFe6jbN-XGmgz@h6&}5v&$_+#(_qFp)W(iiAe5PGsvPJNb$!j_w z{8t?i{<>)#lXdzyHY@d7$xK#Q#x?oNC6&n;%lRgYT|6@R!8{h$5}?bACV#x7KG|U@ LSafsL%9MBja2ZY^ delta 33 rcmV++0N(%Zp#;8>1hCR^v*vRY2D1iyEESVbln}E{lR6x;jIm;01{DsN diff --git a/PROMS/Formats/fmtall/FNPDEVall.xml b/PROMS/Formats/fmtall/FNPDEVall.xml index 8a810fc4d713285f8e90230ab640c7ff3997011b..86b9910aa2f4b1c91ebff9f44d32a91e5e24507f 100644 GIT binary patch delta 209 zcmbQRj_trcwhb~>tSJno3^|h>!?ihm8S)t*yu{G6oVjowP;PQSH49WFP;RqCl>{4m zF+(at5kuKzL1}eve}*Im7(Y?#BzHa%A0&^=2g+~OX)q9-tTUN!a!8EIWS>a_lRILL zO#U_j!mpVE;pa^g*qk%fN@jB1dalV+rmIXYSi?8@+00{;1J;80YLk1`@&NfqHZR$j G^ArG~+e)JV delta 33 rcmV++0N($=z6Ox42Cy7@voL%V2D4CvEESW!o(Qv$n?fA3*12ls@b(WB diff --git a/PROMS/Formats/fmtall/FNPEBKall.xml b/PROMS/Formats/fmtall/FNPEBKall.xml index b99ff6a547492a96bae377af0d5428566b7f2cb4..a96c90b869924bda302d25b1d40d5889de52d649 100644 GIT binary patch delta 207 zcmeA;!n)%M>js5t<`jm~$rtlvasww3^$STy-#hx+8cb$pY*%|5ny I)uy=h0G(G&S^xk5 delta 33 rcmV++0N($&)CGvd1+XA{vow7a2D4O!EESWUoe;B}oH`t{+PYq^^ZE|# diff --git a/PROMS/Formats/fmtall/FNPSAM1all.xml b/PROMS/Formats/fmtall/FNPSAM1all.xml index 7bc99f23780c28c002d70e44126c51a3003a6476..2645e6ea9ba1420a4729d106e4993a798e7f83b7 100644 GIT binary patch delta 216 zcmZ2jtwe3tSJno3^|keb+kEs8S)t*JV%|goVjowNDjdR%57HYkzivlW=Lfy zVknzz=&a7|&yd6b;|H3Y5uklMF;BKUl~&IV@LYvfLtp$@tz;(K?cjsAk<`jm~$se-{fnXR3;Zp5SY9y^2lVV zeh7cTBrtz-!(=a+$$e|MCQq5HHu=U{p2==SM>vasww3^$STtF%O?~pZ)qIo1W**yo IYWfdBvi delta 33 rcmV++0N($WlLh921+YMPvs8K%2D5a6EESW!nh>+RnK~S^`nQ~s_4^NV diff --git a/PROMS/Formats/fmtall/FNP_01all.xml b/PROMS/Formats/fmtall/FNP_01all.xml index d0492168f60c6c129e37e3290670ff874cd1b8c4..b0ea1599a4588a77082d4f5b3f39393fd2d2754c 100644 GIT binary patch delta 209 zcmbR9j^)fhmJQ!3SW_5E8FD5+l+b4PWyog$@+RNUJ$9u%hq)%ZtX7+R;0Vv;XVdmf&N{?1Ic0;|k?q<;whc)gtSJno3^|i0rfE-}(7^)bZA>}KnahyR0GC7J0p&Kwbx5$W7c-#)e4za1qCNxB$#V1fCQr#!nH)1uVDgE~Ba?0B zL-;{W&ezkwk3jl<^RVDxc delta 33 rcmV++0N(%B;RdGB2C!m?vv!IU2D6ruEESXBst~i@sX8399LT!p7#I+= From 527e6b505396a0820b61d4fb0b429182e438a8e0 Mon Sep 17 00:00:00 2001 From: mschill Date: Tue, 29 Oct 2024 15:46:12 -0400 Subject: [PATCH 32/32] B2024-077 When searching Referenced Objects Reports, pick the RO and select a procedure set and the selection panel refreshes and you lose your selection. If the set has to be selected first then it should be at the top of the report panel. Also fixed a small ancillary typo that I found while finding this. --- PROMS/Volian.Controls.Library/DisplayReports.Designer.cs | 2 +- PROMS/Volian.Controls.Library/DisplaySearch.Designer.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PROMS/Volian.Controls.Library/DisplayReports.Designer.cs b/PROMS/Volian.Controls.Library/DisplayReports.Designer.cs index c7105441..3d8b7426 100644 --- a/PROMS/Volian.Controls.Library/DisplayReports.Designer.cs +++ b/PROMS/Volian.Controls.Library/DisplayReports.Designer.cs @@ -511,8 +511,8 @@ namespace Volian.Controls.Library this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.btnPrintReport); - this.Controls.Add(this.xpSetToReport); this.Controls.Add(this.xpSelROs); + this.Controls.Add(this.xpSetToReport); this.Controls.Add(this.tctrlReports); this.Margin = new System.Windows.Forms.Padding(2); this.Name = "DisplayReports"; diff --git a/PROMS/Volian.Controls.Library/DisplaySearch.Designer.cs b/PROMS/Volian.Controls.Library/DisplaySearch.Designer.cs index 90c04f15..1c28d5f9 100644 --- a/PROMS/Volian.Controls.Library/DisplaySearch.Designer.cs +++ b/PROMS/Volian.Controls.Library/DisplaySearch.Designer.cs @@ -658,7 +658,7 @@ namespace Volian.Controls.Library this.superTooltip1.SetSuperTooltip(this.cmboTreeROs, new DevComponents.DotNetBar.SuperTooltipInfo("Select the RO to Search", "", "Select the Referenced Object to search for.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); this.cmboTreeROs.TabIndex = 1; this.cmboTreeROs.ThemeAware = true; - this.cmboTreeROs.WatermarkText = "Select an RO to seach"; + this.cmboTreeROs.WatermarkText = "Select an RO to search"; this.cmboTreeROs.SelectedIndexChanged += new System.EventHandler(this.cmboTreeROs_SelectedIndexChanged); // // tabROSearch