Merge branch 'master' of https://verag.visualstudio.com/_git/Doku
This commit is contained in:
@@ -619,4 +619,50 @@ Public Class Class1
|
|||||||
con.Close()
|
con.Close()
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function GetUserPasswort(ip As String, ByRef User As String, ByRef Password As String)
|
||||||
|
Dim tmp As New AutoCompleteStringCollection()
|
||||||
|
Dim con As New SqlConnection
|
||||||
|
Dim cmd As New SqlCommand
|
||||||
|
Dim reader As SqlDataReader
|
||||||
|
con.ConnectionString = Class1.DBConString
|
||||||
|
cmd.Connection = con
|
||||||
|
|
||||||
|
con.Open()
|
||||||
|
cmd.CommandText = "SELECT Benutzer, Passwort FROM TbL_Netzwerkclients WHERE IPAdresse = '" & ip & "' "
|
||||||
|
reader = cmd.ExecuteReader()
|
||||||
|
Do While reader.Read
|
||||||
|
User = ReadNullAsEmptyString(reader, "Benutzer")
|
||||||
|
Password = ReadNullAsEmptyString(reader, "Passwort")
|
||||||
|
Loop
|
||||||
|
con.Close()
|
||||||
|
|
||||||
|
|
||||||
|
End Function
|
||||||
|
|
||||||
|
Public Shared Function MainHost(ip As String)
|
||||||
|
Dim tmp As New AutoCompleteStringCollection()
|
||||||
|
Dim con As New SqlConnection
|
||||||
|
Dim cmd As New SqlCommand
|
||||||
|
Dim reader As SqlDataReader
|
||||||
|
con.ConnectionString = Class1.DBConString
|
||||||
|
cmd.Connection = con
|
||||||
|
|
||||||
|
Dim LinkedWith As String
|
||||||
|
|
||||||
|
con.Open()
|
||||||
|
cmd.CommandText = "SELECT LinkedWith FROM TbL_Netzwerkclients WHERE IPAdresse = '" & ip & "' "
|
||||||
|
reader = cmd.ExecuteReader()
|
||||||
|
Do While reader.Read
|
||||||
|
LinkedWith = ReadNullAsEmptyString(reader, "LinkedWith")
|
||||||
|
Loop
|
||||||
|
con.Close()
|
||||||
|
|
||||||
|
If LinkedWith = "" Then
|
||||||
|
Return ip
|
||||||
|
Else
|
||||||
|
Return LinkedWith
|
||||||
|
End If
|
||||||
|
|
||||||
|
End Function
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -36,8 +36,8 @@ Public Class Main
|
|||||||
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||||
|
|
||||||
Me.KeyPreview = True
|
Me.KeyPreview = True
|
||||||
|
'MsgBox(sAppPath)
|
||||||
If sAppPath = "C:\Users\miesenbeck\Documents\Visual Studio 2017\Sebastian Spielwiese\Dokumentation\Dokumentation\bin\Debug" Or sAppPath = "C:\Users\miesenbeck\source\repos\Doku\Dokumentation\bin\Debug" Then
|
If sAppPath Like "*\bin\Debug" Then
|
||||||
Debug = True
|
Debug = True
|
||||||
LblDEBUGMODE.Visible = True
|
LblDEBUGMODE.Visible = True
|
||||||
LblDEBUGMODE.ForeColor = Color.Red
|
LblDEBUGMODE.ForeColor = Color.Red
|
||||||
@@ -49,11 +49,11 @@ Public Class Main
|
|||||||
Class1.FilePath = "\\192.168.0.90\f\EDV-Wartung\Dokumentation"
|
Class1.FilePath = "\\192.168.0.90\f\EDV-Wartung\Dokumentation"
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If Class1.DBConString = "Server=NBMIESENBECK\SPIELWIESE;Initial Catalog=Doku;User ID=sa;Password=verag#3;Connection Timeout=5;" Then
|
If Class1.DBConString = "Server=DEVELOPER\DEVSQL;Initial Catalog=Doku;User ID=sa;Password=BmWr501956;Connection Timeout=5;" Then
|
||||||
TimerUpdate.Enabled = False
|
TimerUpdate.Enabled = False
|
||||||
dbload()
|
dbload()
|
||||||
LstStandortLoad()
|
LstStandortLoad()
|
||||||
LblVersion.Text = "TESTDATENBANK"
|
LblVersion.Text = "Version: " & Version
|
||||||
LblVersion.ForeColor = Color.Red
|
LblVersion.ForeColor = Color.Red
|
||||||
LblUhrzeit.ForeColor = Color.Red
|
LblUhrzeit.ForeColor = Color.Red
|
||||||
|
|
||||||
@@ -762,18 +762,21 @@ Public Class Main
|
|||||||
End Function
|
End Function
|
||||||
|
|
||||||
Public Function startputty()
|
Public Function startputty()
|
||||||
|
Dim MainIP As String = Class1.MainHost(DgVMain.CurrentRow.Cells("IPAdresse").Value)
|
||||||
|
Dim Benutzer, Passwort As String
|
||||||
|
Class1.GetUserPasswort(MainIP, Benutzer, Passwort)
|
||||||
Try
|
Try
|
||||||
Dim putty As New Process
|
Dim putty As New Process
|
||||||
putty.StartInfo.FileName = "putty.exe"
|
putty.StartInfo.FileName = "putty.exe"
|
||||||
If DgVMain.CurrentRow.Cells("Benutzer").Value = "" And DgVMain.CurrentRow.Cells("Passwort").Value = "" Then
|
If Benutzer = "" And Passwort = "" Then
|
||||||
putty.StartInfo.Arguments = DgVMain.CurrentRow.Cells("IPAdresse").Value
|
putty.StartInfo.Arguments = DgVMain.CurrentRow.Cells("IPAdresse").Value
|
||||||
Else
|
Else
|
||||||
putty.StartInfo.Arguments = DgVMain.CurrentRow.Cells("IPAdresse").Value & " -l " & DgVMain.CurrentRow.Cells("Benutzer").Value & " -pw " & DgVMain.CurrentRow.Cells("Passwort").Value
|
putty.StartInfo.Arguments = DgVMain.CurrentRow.Cells("IPAdresse").Value & " -l " & Benutzer & " -pw " & Passwort
|
||||||
End If
|
End If
|
||||||
putty.Start()
|
putty.Start()
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
'MsgBox(ex.Message)
|
MsgBox(ex.Message)
|
||||||
|
|
||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|||||||
2
Dokumentation/My Project/Resources.Designer.vb
generated
2
Dokumentation/My Project/Resources.Designer.vb
generated
@@ -139,7 +139,7 @@ Namespace My.Resources
|
|||||||
End Property
|
End Property
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
''' Sucht eine lokalisierte Zeichenfolge, die 0.0.1.20 ähnelt.
|
''' Sucht eine lokalisierte Zeichenfolge, die 0.0.1.22 ähnelt.
|
||||||
'''</summary>
|
'''</summary>
|
||||||
Friend ReadOnly Property Version() As String
|
Friend ReadOnly Property Version() As String
|
||||||
Get
|
Get
|
||||||
|
|||||||
@@ -131,7 +131,7 @@
|
|||||||
<value>..\Resources\Link.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Link.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Version" xml:space="preserve">
|
<data name="Version" xml:space="preserve">
|
||||||
<value>0.0.1.20</value>
|
<value>0.0.1.22</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Link" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
<data name="Link" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||||
<value>..\Resources\Link.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
<value>..\Resources\Link.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||||
|
|||||||
Reference in New Issue
Block a user