mirror of
https://github.com/Stefan-5422/Superbuchaltung.git
synced 2026-09-04 00:46:04 +02:00
Query now Ignores Capitalization
This commit is contained in:
@@ -35,7 +35,7 @@ namespace Superbuchhaltung.Forms.Prompts
|
||||
string[] file = File.ReadAllLines(@"C:\Users\Public\TestFolder\" + i + ".txt");
|
||||
foreach (string s in file)
|
||||
{
|
||||
if (s.Contains(Suchen.Text))
|
||||
if (s.ToLower().Contains(Suchen.Text.ToLower()))
|
||||
{
|
||||
result.Add(s);
|
||||
KUHL.Rows.Add(s.Split(';'));
|
||||
|
||||
Reference in New Issue
Block a user