Compare commits
4 Commits
B2025-051
...
B2025-046_
Author | SHA1 | Date | |
---|---|---|---|
44d85b842c | |||
470f4a770b | |||
808a1ba0ea | |||
04cef606fc |
Binary file not shown.
@@ -1807,14 +1807,15 @@ namespace VEPROMS
|
|||||||
// Deactivate previous procedure tab state by user
|
// Deactivate previous procedure tab state by user
|
||||||
VEPROMS.CSLA.Library.Item.DeactivateStateDisplayTabTmp(MySessionInfo.UserID);
|
VEPROMS.CSLA.Library.Item.DeactivateStateDisplayTabTmp(MySessionInfo.UserID);
|
||||||
// Save current procedure tab state
|
// Save current procedure tab state
|
||||||
foreach (KeyValuePair<string, DisplayTabItem> pgTab in tc._MyDisplayTabItems)
|
|
||||||
|
//B2024-082 Remember Tabs Not opening in correct order
|
||||||
|
foreach (DisplayTabItem dti in tc.MyBar.Items)
|
||||||
{
|
{
|
||||||
cnt++;
|
cnt++;
|
||||||
DisplayTabID = pgTab.Key;
|
DisplayTabID = dti.MyKey;
|
||||||
TabItemID = Int32.Parse(DisplayTabID.Substring(DisplayTabID.IndexOf("Item - ") + 7));
|
TabItemID = dti.MyItemInfo.ItemID;
|
||||||
DisplayTabName = pgTab.Value.ToString();
|
DisplayTabName = dti.ToString();
|
||||||
//tc.SelectedDisplayTabItem.MyStepTabPanel.ToString()
|
Item.AddDisplayTabsState(TabItemID, DisplayTabID, DisplayTabName, MySessionInfo.UserID, cnt);
|
||||||
VEPROMS.CSLA.Library.Item.AddDisplayTabsState(TabItemID, DisplayTabID, DisplayTabName, MySessionInfo.UserID, cnt);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2513,6 +2514,7 @@ namespace VEPROMS
|
|||||||
{
|
{
|
||||||
SelectedStepTabPanel.Select();
|
SelectedStepTabPanel.Select();
|
||||||
dlgFindReplace.MyEditItem = tc.MyEditItem;
|
dlgFindReplace.MyEditItem = tc.MyEditItem;
|
||||||
|
SpellChecker.MyEditItem = tc.MyEditItem; //B2025-043 Remember Tabs is not setting the EditItem for the active window causing a PROMS crash when Spell Check
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -603,7 +603,8 @@ namespace Volian.Controls.Library
|
|||||||
{
|
{
|
||||||
ItemInfo myItemInfo = myItemInfo2;
|
ItemInfo myItemInfo = myItemInfo2;
|
||||||
|
|
||||||
if (myItemInfo.MyDocVersion == null) // bug fix: B2016-108 disconnected data will not have a MyDocVersion
|
//B2025-046 Remember Tabs failing when swapping versions of PROMS
|
||||||
|
if (myItemInfo?.MyDocVersion == null) // bug fix: B2016-108 disconnected data will not have a MyDocVersion
|
||||||
{
|
{
|
||||||
FlexibleMessageBox.Show(this, "Possible disconnected item", "Item Not Found");
|
FlexibleMessageBox.Show(this, "Possible disconnected item", "Item Not Found");
|
||||||
return null;
|
return null;
|
||||||
|
Reference in New Issue
Block a user