-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFormProduit.Designer.vb
More file actions
143 lines (138 loc) · 5.18 KB
/
FormProduit.Designer.vb
File metadata and controls
143 lines (138 loc) · 5.18 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class FormProduit
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.LstProd = New System.Windows.Forms.ListBox()
Me.CBGamme = New System.Windows.Forms.ComboBox()
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.Button1 = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.Button2 = New System.Windows.Forms.Button()
Me.Button3 = New System.Windows.Forms.Button()
Me.Button4 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'LstProd
'
Me.LstProd.FormattingEnabled = True
Me.LstProd.Location = New System.Drawing.Point(12, 144)
Me.LstProd.Name = "LstProd"
Me.LstProd.Size = New System.Drawing.Size(310, 199)
Me.LstProd.TabIndex = 0
'
'CBGamme
'
Me.CBGamme.FormattingEnabled = True
Me.CBGamme.Location = New System.Drawing.Point(34, 38)
Me.CBGamme.Name = "CBGamme"
Me.CBGamme.Size = New System.Drawing.Size(236, 21)
Me.CBGamme.TabIndex = 1
'
'TextBox1
'
Me.TextBox1.Location = New System.Drawing.Point(34, 91)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(236, 20)
Me.TextBox1.TabIndex = 2
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(362, 38)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(71, 41)
Me.Button1.TabIndex = 3
Me.Button1.Text = "Ajouter"
Me.Button1.UseVisualStyleBackColor = False
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(126, 22)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(52, 13)
Me.Label1.TabIndex = 4
Me.Label1.Text = "Catégorie"
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(122, 75)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(60, 13)
Me.Label2.TabIndex = 5
Me.Label2.Text = "Recherche"
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(362, 105)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(71, 41)
Me.Button2.TabIndex = 6
Me.Button2.Text = "Modifier"
Me.Button2.UseVisualStyleBackColor = False
'
'Button3
'
Me.Button3.Location = New System.Drawing.Point(362, 172)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(71, 41)
Me.Button3.TabIndex = 7
Me.Button3.Text = "Supprimer"
Me.Button3.UseVisualStyleBackColor = False
'
'Button4
'
Me.Button4.Location = New System.Drawing.Point(362, 302)
Me.Button4.Name = "Button4"
Me.Button4.Size = New System.Drawing.Size(71, 41)
Me.Button4.TabIndex = 8
Me.Button4.Text = "Retour"
Me.Button4.UseVisualStyleBackColor = False
'
'FormProduit
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(457, 385)
Me.Controls.Add(Me.Button4)
Me.Controls.Add(Me.Button3)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.CBGamme)
Me.Controls.Add(Me.LstProd)
Me.Name = "FormProduit"
Me.Text = "FormProduit"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents LstProd As ListBox
Friend WithEvents CBGamme As ComboBox
Friend WithEvents TextBox1 As TextBox
Friend WithEvents Button1 As Button
Friend WithEvents Label1 As Label
Friend WithEvents Label2 As Label
Friend WithEvents Button2 As Button
Friend WithEvents Button3 As Button
Friend WithEvents Button4 As Button
End Class