Added a Command Line parameter (/NoChgID) which will allow the user to skip entering a ChgID.

Added Profile debug
Improved Performance for ReplaceWords
A wait cursor was set when a right-mouse click occurs on a treeview.  This gives instant feedback that something is happening.
This commit is contained in:
Rich
2015-01-19 20:54:28 +00:00
parent 6a973a288b
commit d501a39a7b
4 changed files with 99 additions and 33 deletions

View File

@@ -874,8 +874,11 @@ namespace Volian.Controls.Library
}
private void PromptForChangeId(ItemInfo myItemInfo, DisplayTabItem pg)
{
dlgChgId dlgCI = new dlgChgId(this); //, null);
dlgCI.ShowDialog(this);
if (!Volian.Base.Library.VlnSettings.GetCommandFlag("NOCHGID"))
{
dlgChgId dlgCI = new dlgChgId(this); //, null);
dlgCI.ShowDialog(this);
}
ItemsChangeIds.Add(myItemInfo.MyProcedure.ItemID, ChgId);
SetChangeId(ChgId, pg, myItemInfo);
}