Sort the RO values / Groups alphabetically
Don't sort the Multiple return values Added logic to set the name of the error log file
This commit is contained in:
@@ -317,7 +317,9 @@ namespace Volian.Controls.Library
|
||||
{
|
||||
tmp = new TreeNode(chld[i].title);
|
||||
tmp.Tag = chld[i];
|
||||
tn.Nodes.Add(tmp);
|
||||
//tn.Nodes.Add(tmp);
|
||||
int index = FindIndex(tn.Nodes, tmp.Text);
|
||||
tn.Nodes.Insert(index, tmp);
|
||||
TreeNode sub = new TreeNode("VLN_DUMMY_FOR_TREE");
|
||||
tmp.Nodes.Add(sub);
|
||||
}
|
||||
@@ -336,8 +338,13 @@ namespace Volian.Controls.Library
|
||||
{
|
||||
tmp = new TreeNode(chld[i].title.Replace(@"\u160?"," "));
|
||||
tmp.Tag = chld[i];
|
||||
int index = FindIndex(tn.Nodes, tmp.Text);
|
||||
tn.Nodes.Insert(index,tmp);
|
||||
if (chld[i].roid.Length == 16)
|
||||
tn.Nodes.Add(tmp.Text);
|
||||
else
|
||||
{
|
||||
int index = FindIndex(tn.Nodes, tmp.Text);
|
||||
tn.Nodes.Insert(index, tmp);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user