Query now Ignores Capitalization

This commit is contained in:
Stefan
2019-12-10 11:21:35 +01:00
parent cdace4b554
commit 5fce70c8e6
13 changed files with 9 additions and 7 deletions
+8
View File
@@ -71,9 +71,17 @@ namespace Superbuchhaltung
{
if (Selection == 0)
{
if (!Directory.Exists(@"C:\Users\Public\TestFolder\"))
{
Directory.CreateDirectory(@"C:\Users\Public\TestFolder\");
}
PHdataview.Rows.Clear();
for (int i = 0; i < 10; i++)
{
if(!File.Exists(@"C:\Users\Public\TestFolder\" + i + ".txt"))
{
File.Create(@"C:\Users\Public\TestFolder\" + i + ".txt");
}
string[] file = File.ReadAllLines(@"C:\Users\Public\TestFolder\" + i + ".txt");
foreach (string f in file)
{