_ Partial Class FormID 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.components = New System.ComponentModel.Container() Me.ButtonEdit = New System.Windows.Forms.Button() Me.ButtonClose = New System.Windows.Forms.Button() Me.LabelFirstName = New System.Windows.Forms.Label() Me.LabelLastName = New System.Windows.Forms.Label() Me.TBFirstName = New System.Windows.Forms.TextBox() Me.TBLastName = New System.Windows.Forms.TextBox() Me.TBAddress = New System.Windows.Forms.TextBox() Me.Label3 = New System.Windows.Forms.Label() Me.RBMale = New System.Windows.Forms.RadioButton() Me.RBFemale = New System.Windows.Forms.RadioButton() Me.ErrorProvider1 = New System.Windows.Forms.ErrorProvider(Me.components) CType(Me.ErrorProvider1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'ButtonEdit ' Me.ButtonEdit.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.ButtonEdit.Location = New System.Drawing.Point(376, 346) Me.ButtonEdit.Name = "ButtonEdit" Me.ButtonEdit.Size = New System.Drawing.Size(75, 23) Me.ButtonEdit.TabIndex = 20 Me.ButtonEdit.Text = "Edit" Me.ButtonEdit.UseVisualStyleBackColor = True ' 'ButtonClose ' Me.ButtonClose.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.ButtonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.ButtonClose.Location = New System.Drawing.Point(457, 346) Me.ButtonClose.Name = "ButtonClose" Me.ButtonClose.Size = New System.Drawing.Size(75, 23) Me.ButtonClose.TabIndex = 21 Me.ButtonClose.Text = "Close" Me.ButtonClose.UseVisualStyleBackColor = True ' 'LabelFirstName ' Me.LabelFirstName.AutoSize = True Me.LabelFirstName.Location = New System.Drawing.Point(12, 60) Me.LabelFirstName.Name = "LabelFirstName" Me.LabelFirstName.Size = New System.Drawing.Size(63, 13) Me.LabelFirstName.TabIndex = 7 Me.LabelFirstName.Text = "First name:" ' 'LabelLastName ' Me.LabelLastName.AutoSize = True Me.LabelLastName.Location = New System.Drawing.Point(12, 88) Me.LabelLastName.Name = "LabelLastName" Me.LabelLastName.Size = New System.Drawing.Size(61, 13) Me.LabelLastName.TabIndex = 8 Me.LabelLastName.Text = "Last name:" ' 'TBFirstName ' Me.TBFirstName.Location = New System.Drawing.Point(80, 57) Me.TBFirstName.Name = "TBFirstName" Me.TBFirstName.Size = New System.Drawing.Size(165, 22) Me.TBFirstName.TabIndex = 0 ' 'TBLastName ' Me.TBLastName.Location = New System.Drawing.Point(80, 85) Me.TBLastName.Name = "TBLastName" Me.TBLastName.Size = New System.Drawing.Size(165, 22) Me.TBLastName.TabIndex = 1 ' 'TBAddress ' Me.TBAddress.Location = New System.Drawing.Point(12, 182) Me.TBAddress.Multiline = True Me.TBAddress.Name = "TBAddress" Me.TBAddress.Size = New System.Drawing.Size(258, 87) Me.TBAddress.TabIndex = 4 ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(12, 115) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(48, 13) Me.Label3.TabIndex = 9 Me.Label3.Text = "Gender:" ' 'RBMale ' Me.RBMale.AutoSize = True Me.RBMale.Location = New System.Drawing.Point(80, 113) Me.RBMale.Name = "RBMale" Me.RBMale.Size = New System.Drawing.Size(50, 17) Me.RBMale.TabIndex = 2 Me.RBMale.TabStop = True Me.RBMale.Text = "Male" Me.RBMale.UseVisualStyleBackColor = True ' 'RBFemale ' Me.RBFemale.AutoSize = True Me.RBFemale.Location = New System.Drawing.Point(171, 113) Me.RBFemale.Name = "RBFemale" Me.RBFemale.Size = New System.Drawing.Size(61, 17) Me.RBFemale.TabIndex = 3 Me.RBFemale.TabStop = True Me.RBFemale.Text = "Female" Me.RBFemale.UseVisualStyleBackColor = True ' 'ErrorProvider1 ' Me.ErrorProvider1.ContainerControl = Me ' 'FormID ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.ButtonClose Me.ClientSize = New System.Drawing.Size(544, 381) Me.Controls.Add(Me.RBFemale) Me.Controls.Add(Me.RBMale) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.TBAddress) Me.Controls.Add(Me.TBLastName) Me.Controls.Add(Me.TBFirstName) Me.Controls.Add(Me.LabelLastName) Me.Controls.Add(Me.LabelFirstName) Me.Controls.Add(Me.ButtonClose) Me.Controls.Add(Me.ButtonEdit) Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle Me.MaximizeBox = False Me.Name = "FormID" Me.Text = "FormID" CType(Me.ErrorProvider1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents LabelFirstName As System.Windows.Forms.Label Friend WithEvents LabelLastName As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label Protected WithEvents ButtonEdit As System.Windows.Forms.Button Protected WithEvents ButtonClose As System.Windows.Forms.Button Protected WithEvents TBFirstName As System.Windows.Forms.TextBox Protected WithEvents TBLastName As System.Windows.Forms.TextBox Protected WithEvents TBAddress As System.Windows.Forms.TextBox Protected WithEvents RBMale As System.Windows.Forms.RadioButton Protected WithEvents RBFemale As System.Windows.Forms.RadioButton Friend WithEvents ErrorProvider1 As System.Windows.Forms.ErrorProvider End Class