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:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user