Public Class frmedokaUpdate Inherits System.Windows.Forms.Form #Region " Vom Windows Form Designer generierter Code " Public Sub New() MyBase.New() ' Dieser Aufruf ist für den Windows Form-Designer erforderlich. InitializeComponent() ' Initialisierungen nach dem Aufruf InitializeComponent() hinzufügen End Sub ' Die Form überschreibt den Löschvorgang der Basisklasse, um Komponenten zu bereinigen. Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub ' Für Windows Form-Designer erforderlich Private components As System.ComponentModel.IContainer 'HINWEIS: Die folgende Prozedur ist für den Windows Form-Designer erforderlich 'Sie kann mit dem Windows Form-Designer modifiziert werden. 'Verwenden Sie nicht den Code-Editor zur Bearbeitung. Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents TextBox1 As System.Windows.Forms.TextBox Friend WithEvents TextBox2 As System.Windows.Forms.TextBox Friend WithEvents TextBox3 As System.Windows.Forms.TextBox Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog Friend WithEvents Button3 As System.Windows.Forms.Button Friend WithEvents Button4 As System.Windows.Forms.Button Private Sub InitializeComponent() Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(frmedokaUpdate)) Me.Label1 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label() Me.TextBox1 = New System.Windows.Forms.TextBox() Me.TextBox2 = New System.Windows.Forms.TextBox() Me.TextBox3 = New System.Windows.Forms.TextBox() Me.Button1 = New System.Windows.Forms.Button() Me.Button2 = New System.Windows.Forms.Button() Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog() Me.Button3 = New System.Windows.Forms.Button() Me.Button4 = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'Label1 ' Me.Label1.Location = New System.Drawing.Point(16, 24) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(56, 23) Me.Label1.TabIndex = 0 Me.Label1.Text = "Datei 1" ' 'Label2 ' Me.Label2.Location = New System.Drawing.Point(16, 48) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(56, 23) Me.Label2.TabIndex = 1 Me.Label2.Text = "Datei 2" ' 'Label3 ' Me.Label3.Location = New System.Drawing.Point(16, 72) Me.Label3.Name = "Label3" Me.Label3.TabIndex = 2 Me.Label3.Text = "Start-Kommando" ' 'TextBox1 ' Me.TextBox1.Location = New System.Drawing.Point(120, 24) Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(232, 20) Me.TextBox1.TabIndex = 3 Me.TextBox1.Text = "" ' 'TextBox2 ' Me.TextBox2.Location = New System.Drawing.Point(120, 48) Me.TextBox2.Name = "TextBox2" Me.TextBox2.Size = New System.Drawing.Size(232, 20) Me.TextBox2.TabIndex = 4 Me.TextBox2.Text = "" ' 'TextBox3 ' Me.TextBox3.Location = New System.Drawing.Point(120, 72) Me.TextBox3.Name = "TextBox3" Me.TextBox3.Size = New System.Drawing.Size(232, 20) Me.TextBox3.TabIndex = 5 Me.TextBox3.Text = "" ' 'Button1 ' Me.Button1.Image = CType(resources.GetObject("Button1.Image"), System.Drawing.Bitmap) Me.Button1.Location = New System.Drawing.Point(352, 24) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(24, 24) Me.Button1.TabIndex = 6 ' 'Button2 ' Me.Button2.Image = CType(resources.GetObject("Button2.Image"), System.Drawing.Bitmap) Me.Button2.Location = New System.Drawing.Point(352, 48) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(24, 24) Me.Button2.TabIndex = 7 ' 'Button3 ' Me.Button3.Location = New System.Drawing.Point(304, 112) Me.Button3.Name = "Button3" Me.Button3.TabIndex = 8 Me.Button3.Text = "&OK" ' 'Button4 ' Me.Button4.Location = New System.Drawing.Point(8, 112) Me.Button4.Name = "Button4" Me.Button4.TabIndex = 9 Me.Button4.Text = "&Abbruch" ' 'edokaUpdate ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(384, 141) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button4, Me.Button3, Me.Button2, Me.Button1, Me.TextBox3, Me.TextBox2, Me.TextBox1, Me.Label3, Me.Label2, Me.Label1}) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "edokaUpdate" Me.Text = "EDOKA-Update" Me.ResumeLayout(False) End Sub #End Region Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.OpenFileDialog1.ShowDialog() If Me.OpenFileDialog1.FileName <> "" Then Me.TextBox1.Text = Me.OpenFileDialog1.FileName End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Me.OpenFileDialog1.ShowDialog() If Me.OpenFileDialog1.FileName <> "" Then Me.TextBox2.Text = Me.OpenFileDialog1.FileName End Sub Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim update As New EdokaUpd() update.Save_To_DB(Me.TextBox1.Text, Me.TextBox2.Text, Me.TextBox3.Text) MsgBox("Nach der Anpassung der Versionsnummer wird EDOKA beim Neustart aktualisiert.") Me.Close() End Sub End Class