update 20260522

This commit is contained in:
Stefan Hutter
2026-05-22 20:49:40 +02:00
parent 83a0703324
commit 6d764dccd0
2824 changed files with 1929001 additions and 132 deletions
+7 -3
View File
@@ -77,13 +77,16 @@ namespace Tool_API_Dokumentgenerator
Import_sf_Excel(datapath+txtexcelinput.Text, selected_sheetname, ref importdata);
DataView dv = new DataView(importdata ); dv.Sort = txtspalten.Text.Replace(";", ",");
importdata.DefaultView.Sort = txtspalten.Text.Replace(";", ",");
progressBarAdv1.Visible = true;
string oldkey = "";
int counter = 0;
progressBarAdv1.Minimum = 0;
progressBarAdv1.Maximum = dv.Count;
progressBarAdv1.Value = 0;
System.Windows.Forms.Application.DoEvents();
foreach (DataRowView rowView in dv)
{
progressBarAdv1.Value++;
DataRow row = rowView.Row;
if (oldkey != row[txtdokumenttrenner.Text].ToString())
{
@@ -201,6 +204,7 @@ namespace Tool_API_Dokumentgenerator
}
}
}
progressBarAdv1.Visible = false;
}
private void Import_sf_Excel(string filename, string sheetname, ref System.Data.DataTable importdata)
{