_ Partial Class FrmEditions 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.LV_ETATS = New System.Windows.Forms.ListView() Me.intitule = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) Me.nom = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) Me.code = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) Me.dates = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) Me.Label1 = New System.Windows.Forms.Label() Me.SuspendLayout() ' 'LV_ETATS ' Me.LV_ETATS.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.intitule, Me.nom, Me.code, Me.dates}) Me.LV_ETATS.FullRowSelect = True Me.LV_ETATS.GridLines = True Me.LV_ETATS.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable Me.LV_ETATS.Location = New System.Drawing.Point(12, 13) Me.LV_ETATS.Margin = New System.Windows.Forms.Padding(12, 9, 12, 9) Me.LV_ETATS.Name = "LV_ETATS" Me.LV_ETATS.Size = New System.Drawing.Size(685, 509) Me.LV_ETATS.TabIndex = 0 Me.LV_ETATS.UseCompatibleStateImageBehavior = False Me.LV_ETATS.View = System.Windows.Forms.View.Details ' 'intitule ' Me.intitule.Text = "Intitulé de l'état" Me.intitule.Width = 337 ' 'nom ' Me.nom.Text = "Nom" Me.nom.Width = 261 ' 'code ' Me.code.Text = "Code" Me.code.Width = 1 ' 'dates ' Me.dates.Text = "Dates" ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(12, 531) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(282, 16) Me.Label1.TabIndex = 1 Me.Label1.Text = "(Entrée ou double-clic pour sélectionner l'état)" ' 'FrmEditions ' Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(705, 553) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.LV_ETATS) Me.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Margin = New System.Windows.Forms.Padding(4) Me.Name = "FrmEditions" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "Choix de l'état à imprimer" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents LV_ETATS As System.Windows.Forms.ListView Friend WithEvents nom As System.Windows.Forms.ColumnHeader Friend WithEvents code As System.Windows.Forms.ColumnHeader Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents intitule As System.Windows.Forms.ColumnHeader Friend WithEvents dates As System.Windows.Forms.ColumnHeader End Class