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

@@ -528,6 +528,7 @@ namespace Volian.Controls.Library
MessageBox.Show("Security has not been defined for PROMS. All functionality has been defaulted to the lowest level for all users until security is defined.", "no security defined", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
this.Cursor = Cursors.WaitCursor;
#region Menu_New
if (tn.VEObject as FolderInfo != null)
{
@@ -883,6 +884,7 @@ namespace Volian.Controls.Library
}
}
}
this.Cursor = Cursors.Default;
cm.Show(this, new Point(e.X, e.Y));
}
}