_ Partial Class Form3 Inherits System.Windows.Forms.Form 'Form remplace la méthode Dispose pour nettoyer la liste des composants. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Requise par le Concepteur Windows Form Private components As System.ComponentModel.IContainer 'REMARQUE : la procédure suivante est requise par le Concepteur Windows Form 'Elle peut être modifiée à l'aide du Concepteur Windows Form. 'Ne la modifiez pas à l'aide de l'éditeur de code. _ Private Sub InitializeComponent() Me.TextBox1 = New System.Windows.Forms.TextBox Me.Button1 = New System.Windows.Forms.Button Me.Label1 = New System.Windows.Forms.Label Me.Button2 = New System.Windows.Forms.Button Me.SuspendLayout() ' 'TextBox1 ' Me.TextBox1.Location = New System.Drawing.Point(12, 35) Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(307, 22) Me.TextBox1.TabIndex = 0 ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(325, 32) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(41, 21) Me.Button1.TabIndex = 1 Me.Button1.Text = "..." Me.Button1.UseVisualStyleBackColor = True ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(12, 18) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(253, 12) Me.Label1.TabIndex = 2 Me.Label1.Text = "Choose your minecraft folder and your minecraft file" ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(148, 59) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(75, 21) Me.Button2.TabIndex = 3 Me.Button2.Text = "Save" Me.Button2.UseVisualStyleBackColor = True ' 'Form3 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(371, 83) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.TextBox1) Me.Name = "Form3" Me.Text = "Minecraft Launcher - ClanLSE" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents TextBox1 As System.Windows.Forms.TextBox Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Button2 As System.Windows.Forms.Button End Class