This commit is contained in:
2023-09-21 12:07:24 +02:00
parent 6edb3879de
commit ef804638b3
8 changed files with 827 additions and 369 deletions

View File

@@ -8,6 +8,7 @@ Imports DigitalData.Modules.Language
Imports DigitalData.Modules.Windows
Imports DigitalData.Modules.License
Imports DigitalData.GUIs.Common
Imports DevExpress.LookAndFeel
Public Class frmStart
Public LicenseManager As LicenseManagerLegacy
@@ -93,6 +94,10 @@ Public Class frmStart
End If
DATABASE_ECM.ExecuteNonQuery("DELETE FROM TBGI_FILES_USER WHERE UPPER(USER@WORK) = UPPER('" & Environment.UserName & "')")
If CONFIG.Config.MyFormsDesign <> "" Then
UserLookAndFeel.Default.SetSkinStyle(CONFIG.Config.MyFormsDesign)
End If
TopMost = True
Catch ex As Exception
@@ -674,4 +679,8 @@ Public Class frmStart
Private Sub LabelControl1_DragLeave(sender As Object, e As EventArgs) Handles LabelControl1.DragLeave
'PictureEdit1.Visible = False
End Sub
Private Sub frmStart_GiveFeedback(sender As Object, e As GiveFeedbackEventArgs) Handles Me.GiveFeedback
End Sub
End Class