update 20250721
This commit is contained in:
1
Client/Diverses/DokHistory.Designer.cs
generated
1
Client/Diverses/DokHistory.Designer.cs
generated
@@ -43,6 +43,7 @@
|
||||
this.sfDataGrid1.Size = new System.Drawing.Size(1259, 450);
|
||||
this.sfDataGrid1.TabIndex = 0;
|
||||
this.sfDataGrid1.Text = "sfDataGrid1";
|
||||
this.sfDataGrid1.AutoGeneratingColumn += new Syncfusion.WinForms.DataGrid.Events.AutoGeneratingColumnEventHandler(this.sfDataGrid1_AutoGeneratingColumn);
|
||||
//
|
||||
// DokHistory
|
||||
//
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
using Database;
|
||||
using OnDoc.Klassen;
|
||||
using Syncfusion.WinForms.DataGrid.Events;
|
||||
using Syncfusion.WinForms.DataGrid;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
@@ -30,10 +32,21 @@ namespace OnDoc.Diverses
|
||||
private void DokHistory_Load(object sender, EventArgs e)
|
||||
{
|
||||
DB dB = new DB(AppParams.connectionstring);
|
||||
dB.Get_Tabledata("Select * from edoka_journale.dbo.nlog_doc where dokumentid='"+dokumentid+"' order by id desc",false,true);
|
||||
dB.Get_Tabledata("Select id,Origin,Message,LogLevel,CreatedOn,UserID ,Dokumentid,Partnernr,[Aktion] from edoka_journale.dbo.nlog_doc where dokumentid='" + dokumentid+"' order by id desc",false,true);
|
||||
sfDataGrid1.DataSource = dB.dsdaten.Tables[0];
|
||||
this.sfDataGrid1.Columns["CreatedOn"].Format = "yyyy-MM-dd hh:mm:ss";
|
||||
|
||||
this.sfDataGrid1.Columns["CreatedOn"].Format = "yyyy-MM-dd HH:mm:ss";
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void sfDataGrid1_AutoGeneratingColumn(object sender, AutoGeneratingColumnArgs e)
|
||||
{
|
||||
//if (e.Column.MappingName == "CreatedOn" || e.Column.MappingName == "Mutiert am")
|
||||
//{
|
||||
// GridDateTimeColumn gdt = e.Column as GridDateTimeColumn;
|
||||
// gdt.Pattern = (Syncfusion.WinForms.Input.Enums.DateTimePattern)Syncfusion.Windows.Shared.DateTimePattern.CustomPattern;
|
||||
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
2
Client/Diverses/SplashScreen.Designer.cs
generated
2
Client/Diverses/SplashScreen.Designer.cs
generated
@@ -64,7 +64,7 @@
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(135, 26);
|
||||
this.label2.TabIndex = 2;
|
||||
this.label2.Text = "11. Juli 2025";
|
||||
this.label2.Text = "17. Juli 2025";
|
||||
this.label2.Click += new System.EventHandler(this.label2_Click);
|
||||
//
|
||||
// SplashScreen
|
||||
|
||||
Reference in New Issue
Block a user