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

@@ -15,6 +15,7 @@ using C1.Win.C1FlexGrid;
using C1.Win.C1SpellChecker;
using System.Text.RegularExpressions;
using System.Xml.Serialization;
using Volian.Base.Library;
namespace Volian.Controls.Library
{
@@ -856,6 +857,7 @@ namespace Volian.Controls.Library
}
public void LoadGrid(ItemInfo itemInfo)
{
int profileDepth = ProfileTimer.Push(">>>> VlnFlexGrid.LoadGrid");
_MyItemInfo = itemInfo;
string str = itemInfo.MyContent.MyGrid.Data;
VE_Font vefont = _MyItemInfo.GetItemFont();
@@ -916,6 +918,7 @@ namespace Volian.Controls.Library
_ReadingXml = false;
Select(-1, -1); // this keeps the cell from being selected when the grid is first displayed
Visible = true;
ProfileTimer.Pop(profileDepth);
}
private void ReadXml(string str)