From cb246c0d8937873f5e8a1820e1a9327eb8281d6c Mon Sep 17 00:00:00 2001 From: "d.breimaier" Date: Fri, 25 Nov 2022 12:46:27 +0100 Subject: [PATCH] =?UTF-8?q?Autologin=20f=C3=BCr=20Daniel=20eingerichtet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SDL/frmLogin.vb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/SDL/frmLogin.vb b/SDL/frmLogin.vb index 9a9393a8..c0cb87a4 100644 --- a/SDL/frmLogin.vb +++ b/SDL/frmLogin.vb @@ -125,6 +125,15 @@ btnLogin.PerformClick() End If End If + + If Environment.MachineName = "H6CCWP3" Then + If MsgBox("Autologin?", vbYesNoCancel) = MsgBoxResult.Yes Then + txtUser.Text = "daniel" + txtPwd.Text = "debug" + btnLogin.PerformClick() + End If + End If + ' End Sub