Je pense avoir trouvé, voila mon code :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form3
Inherits System.Windows.Forms.Form
'Form remplace la méthode Dispose pour nettoyer la liste des composants.
<System.Diagnostics.DebuggerNonUserCode()> _
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.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.ComboBox1 = New System.Windows.Forms.ComboBox()
Me.ListView1 = New System.Windows.Forms.ListView()
Me.SuspendLayout()
'
'ComboBox1
'
Me.ComboBox1.FormattingEnabled = True
Me.ComboBox1.Items.AddRange(New Object() {"X hero siege", "Dota"})
Me.ComboBox1.Location = New System.Drawing.Point(12, 12)
Me.ComboBox1.Name = "ComboBox1"
Me.ComboBox1.Size = New System.Drawing.Size(622, 21)
Me.ComboBox1.TabIndex = 1
Me.ComboBox1.Text = "Nom de la MAP"
'
'ListView1
'
Me.ListView1.Location = New System.Drawing.Point(12, 39)
Me.ListView1.Name = "ListView1"
Me.ListView1.Size = New System.Drawing.Size(622, 375)
Me.ListView1.TabIndex = 2
Me.ListView1.Tag = "Séléctionner le nom de la map de votre choix."
Me.ListView1.UseCompatibleStateImageBehavior = False
'
'Form3
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(646, 426)
Me.Controls.Add(Me.ListView1)
Me.Controls.Add(Me.ComboBox1)
Me.Name = "Form3"
Me.Text = "MAP MANAGER V1.0"
Me.ResumeLayout(False)
End Sub
Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox
Friend WithEvents ListView1 As System.Windows.Forms.ListView
Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
End Sub
End Class |
J'ai ajouté ceci :
Me.ComboBox1.Items.AddRange(New Object() {"X hero siege", "Dota"})
Tous ceci est-il bon si oui peut tu m'aider car je ne sait pas comment afficher du texte dans ma richtextbox en dessous.
Partager