_ Partial Class SelectMulti Inherits System.Windows.Forms.Form 'Form esegue l'override del metodo Dispose per pulire l'elenco dei componenti. _ Protected Overrides Sub Dispose( disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Richiesto da Progettazione Windows Form Private components As System.ComponentModel.IContainer 'NOTA: la procedura che segue è richiesta da Progettazione Windows Form 'Può essere modificata in Progettazione Windows Form. 'Non modificarla nell'editor del codice. _ Private Sub InitializeComponent() Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel() Me.ListBox1 = New System.Windows.Forms.ListBox() Me.OK_Button = New System.Windows.Forms.Button() Me.TableLayoutPanel1.SuspendLayout() Me.SuspendLayout() ' 'TableLayoutPanel1 ' Me.TableLayoutPanel1.CausesValidation = False Me.TableLayoutPanel1.ColumnCount = 1 Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) Me.TableLayoutPanel1.Controls.Add(Me.ListBox1, 0, 0) Me.TableLayoutPanel1.Controls.Add(Me.OK_Button, 0, 1) Me.TableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill Me.TableLayoutPanel1.Location = New System.Drawing.Point(0, 0) Me.TableLayoutPanel1.Margin = New System.Windows.Forms.Padding(0) Me.TableLayoutPanel1.Name = "TableLayoutPanel1" Me.TableLayoutPanel1.RowCount = 2 Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 24.0!)) Me.TableLayoutPanel1.Size = New System.Drawing.Size(94, 121) Me.TableLayoutPanel1.TabIndex = 1 ' 'ListBox1 ' Me.ListBox1.Dock = System.Windows.Forms.DockStyle.Fill Me.ListBox1.FormattingEnabled = True Me.ListBox1.HorizontalScrollbar = True Me.ListBox1.Location = New System.Drawing.Point(1, 1) Me.ListBox1.Margin = New System.Windows.Forms.Padding(1) Me.ListBox1.Name = "ListBox1" Me.ListBox1.Size = New System.Drawing.Size(92, 95) Me.ListBox1.TabIndex = 3 ' 'OK_Button ' Me.OK_Button.Dock = System.Windows.Forms.DockStyle.Bottom Me.OK_Button.Location = New System.Drawing.Point(20, 99) Me.OK_Button.Margin = New System.Windows.Forms.Padding(20, 2, 20, 2) Me.OK_Button.Name = "OK_Button" Me.OK_Button.Size = New System.Drawing.Size(54, 20) Me.OK_Button.TabIndex = 2 Me.OK_Button.Text = "OK" Me.OK_Button.UseVisualStyleBackColor = True ' 'SelectMulti ' Me.AcceptButton = Me.OK_Button Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None Me.ClientSize = New System.Drawing.Size(94, 121) Me.ControlBox = False Me.Controls.Add(Me.TableLayoutPanel1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow Me.KeyPreview = True Me.MaximizeBox = False Me.MaximumSize = New System.Drawing.Size(110, 160) Me.MinimizeBox = False Me.MinimumSize = New System.Drawing.Size(110, 160) Me.Name = "SelectMulti" Me.ShowIcon = False Me.ShowInTaskbar = False Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "MultiSel" Me.TableLayoutPanel1.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents OK_Button As System.Windows.Forms.Button Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel Friend WithEvents ListBox1 As System.Windows.Forms.ListBox End Class