Update 20251107

This commit is contained in:
Stefan Hutter
2025-11-07 15:07:34 +01:00
parent e6d233b36d
commit ec5c61cc57
55 changed files with 1032 additions and 269 deletions

View File

@@ -33,6 +33,7 @@ using System.Globalization;
using System.Threading;
using System.ComponentModel.Design;
using Syncfusion.Windows.Forms.Tools.Win32API;
using Windows.Storage.Provider;
namespace OnDoc.UIControls
@@ -80,6 +81,8 @@ namespace OnDoc.UIControls
public string dokumentid { get; set; } = "";
public bool isuri { get; set; } = false;
public string uri { get; set; } = "";
public UCAllgemeineDokumentParam()
@@ -147,6 +150,14 @@ namespace OnDoc.UIControls
{
//set_personendokument();
db.Get_Tabledata("Select * from dokumenttyp where dokumenttypnr=" + dokumenttypnr, false, true);
//if (db.dsdaten.Tables[0].Rows[0]["URI"].ToString()!="")
//{
// isuri = true;
// pnluri1.Visible = true;
// pnluri2.Visible = true;
// pnluri3.Visible = true;
// pnluri4.Visible = true;
//}
System.Data.DataRow dr = db.dsdaten.Tables[0].Rows[0];
this.txtbezeichnung.Text = dr["Bezeichnung"].ToString();
this.txtbezeichnung.Enabled = Convert.ToBoolean(dr["bezeichnungmut"]);