Completely removed all the old database interaction code, save the database converter form. Updated the formatting in the weekly and taxable areas on the modify record form. Re-enabled holiday checking on the main form.

This commit is contained in:
2017-04-07 04:50:02 -05:00
parent e5fa0a8238
commit 2106879ee8
21 changed files with 842 additions and 18090 deletions
+18 -18
View File
@@ -214,24 +214,24 @@ namespace AdvertsingProfitControl
//removedCharacterOffset++;
}
#if DEBUG
if (abbreviations.Count > 0)
{
LogConsole.WriteToLog(FrmLogConsole.Level.Debug, "Detected abbreviation(s) in input string \"" + adItemText + "\":");
foreach (var abbreviation in abbreviations)
{
LogConsole.WriteToLog(FrmLogConsole.Level.Debug, abbreviation);
}
}
else if (words.Count > 0)
{
LogConsole.WriteToLog(FrmLogConsole.Level.Debug, "Detected words(s) in input string \"" + adItemText + "\":");
foreach (var word in words)
{
LogConsole.WriteToLog(FrmLogConsole.Level.Debug, word);
}
}
#endif
//#if DEBUG
// if (abbreviations.Count > 0)
// {
// LogConsole.WriteToLog(FrmLogConsole.Level.Debug, "Detected abbreviation(s) in input string \"" + adItemText + "\":");
// foreach (var abbreviation in abbreviations)
// {
// LogConsole.WriteToLog(FrmLogConsole.Level.Debug, abbreviation);
// }
// }
// else if (words.Count > 0)
// {
// LogConsole.WriteToLog(FrmLogConsole.Level.Debug, "Detected words(s) in input string \"" + adItemText + "\":");
// foreach (var word in words)
// {
// LogConsole.WriteToLog(FrmLogConsole.Level.Debug, word);
// }
// }
//#endif
return cleanedInputString;
}