Created the first version of HTML code for the front form. Changed to the Pechkin HTML to PDF library. Removed the string tester. Fixed a bug with the main form where the APC tables would not be sorted by row position.

This commit is contained in:
2017-05-02 23:38:00 -05:00
parent ba5808443b
commit 218d5be4d6
36 changed files with 560 additions and 1502 deletions
+8 -1
View File
@@ -53,7 +53,14 @@ namespace AdvertsingProfitControl
var node = new TreeNode(file.Name) { Name = file.FullName };
fileListTreeView.Nodes.Add(node);
}
//Grab the HTML files
fileNames = Directory.GetFiles(Application.StartupPath, "*.html", SearchOption.TopDirectoryOnly);
foreach (var fileName in fileNames)
{
var file = new FileInfo(fileName);
var node = new TreeNode(file.Name) { Name = file.FullName };
fileListTreeView.Nodes.Add(node);
}
if (fileListTreeView.Nodes.Count <= 0) return;
ReadSelectedFile();
}