MS weitere KonfigurationenÜbersicht

This commit is contained in:
2020-07-29 14:55:34 +02:00
parent 92f0097f67
commit 818e4beb54
16 changed files with 1835 additions and 1721 deletions

View File

@@ -132,10 +132,15 @@ Public Class ClassInit
oStopWatch.done
End Sub
<STAThread()>
Public Sub InitUserLogin()
Public Sub InitUserLogin(Optional pUSRNAME As String = "")
Dim oStopWatch As New RefreshHelper.SW("InitUserLogin")
Try
USER_USERNAME = Environment.UserName
If pUSRNAME <> String.Empty Then
USER_USERNAME = pUSRNAME
Else
USER_USERNAME = Environment.UserName
End If
Try
Dim oSQLSW As New RefreshHelper.SW("VWDD_USER_CLIENT")
Dim oSQL = $"SELECT * FROM VWDD_USER_CLIENT WHERE UPPER(USERNAME) = UPPER('{USER_USERNAME}')"