AP bezeichnungen werden richtig gesetzt

This commit is contained in:
HuskyTeufel
2020-06-05 12:26:59 +02:00
parent 457875537e
commit 815c2733a8
3 changed files with 22 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ using System.Windows.Forms;
using SanShared;
using System.Collections;
using Database;
using System.Diagnostics;
namespace SanSystem
{
@@ -203,8 +204,10 @@ namespace SanSystem
txt_punkt_bis.DataBindings.Clear();
string vonPunkt = txt_punkt_von.Text;
StringBuilder attribute = new StringBuilder();
for (int i = 0; i < vonPunkt.Length; i++)
for (int i = 1; i < vonPunkt.Length; i++)
{
//Debugger.Break();
//int x = (int)vonPunkt[i];
if((int)vonPunkt[i] >= 65 && (int)vonPunkt[i] <= 122)
{
attribute.Append(vonPunkt[i]);