Update 20260717

This commit is contained in:
Stefan Hutter
2026-07-17 14:43:33 +02:00
parent 58cd45116c
commit ebc8101626
1004 changed files with 1174234 additions and 84840 deletions
@@ -62,6 +62,11 @@ namespace OnDoc.UIControls.Administrator
if (Convert.ToInt32(dr["AllowDelete"]) == 0) { te.deletemode(false); } else { te.deletemode(true); }
if (Convert.ToInt32(dr["AllowEdit"]) == 0) { te.editmode(false); } else { te.editmode(true); }
if (Convert.ToInt32(dr["AllowaddNew"]) == 0) { te.addmode(false); } else { te.addmode(true); }
Screen screen = Screen.FromControl(this);
te.StartPosition = FormStartPosition.Manual;
te.Location = new System.Drawing.Point(
screen.WorkingArea.Left + 50,
screen.WorkingArea.Top + 50);
te.Show();
//update_data();
//if (Convert.ToInt32(dr["AllowDelete"]) == 0) { sfDataGrid1.AllowDeleting = false; } else { sfDataGrid1.AllowDeleting = true;}