Added a shrink changing form but the math seems to be off so it is disabled for the time being. Updated the interface on the main form and the modify record form to include the log viewer and the log console.

This commit is contained in:
2017-04-18 01:51:51 -05:00
parent c72fbf88cf
commit ba5808443b
11 changed files with 6572 additions and 39 deletions
+4
View File
@@ -98,6 +98,10 @@ namespace AdvertsingProfitControl
message = $"{level}: {message}";
logListView.Items.Add(message);
logListView.Items[index].ForeColor = color;
if (level == Level.Error || level == Level.Critical)
{
GlobalClasses.WriteToLog(message);
}
}
catch (Exception e)
{