_ Partial Class AboutBox1 Inherits System.Windows.Forms.Form 'Form esegue l'override del metodo Dispose per pulire l'elenco dei componenti. _ 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 '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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(AboutBox1)) Me.LogoPictureBox = New System.Windows.Forms.PictureBox() Me.OKButton = New System.Windows.Forms.Button() Me.LabelCompanyName = New System.Windows.Forms.Label() Me.LabelCopyright = New System.Windows.Forms.Label() Me.LabelVersion = New System.Windows.Forms.Label() Me.LabelProductName = New System.Windows.Forms.Label() Me.tbInfoProg = New System.Windows.Forms.TextBox() Me.tbInfoSys = New System.Windows.Forms.TextBox() CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'LogoPictureBox ' Me.LogoPictureBox.Image = CType(resources.GetObject("LogoPictureBox.Image"), System.Drawing.Image) Me.LogoPictureBox.Location = New System.Drawing.Point(36, 21) Me.LogoPictureBox.Name = "LogoPictureBox" Me.LogoPictureBox.Size = New System.Drawing.Size(52, 52) Me.LogoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage Me.LogoPictureBox.TabIndex = 0 Me.LogoPictureBox.TabStop = False ' 'OKButton ' Me.OKButton.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.OKButton.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.OKButton.Location = New System.Drawing.Point(117, 356) Me.OKButton.Name = "OKButton" Me.OKButton.Size = New System.Drawing.Size(80, 20) Me.OKButton.TabIndex = 0 Me.OKButton.Text = "&OK" ' 'LabelCompanyName ' Me.LabelCompanyName.Location = New System.Drawing.Point(136, 66) Me.LabelCompanyName.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelCompanyName.MaximumSize = New System.Drawing.Size(152, 17) Me.LabelCompanyName.MinimumSize = New System.Drawing.Size(152, 17) Me.LabelCompanyName.Name = "LabelCompanyName" Me.LabelCompanyName.Size = New System.Drawing.Size(152, 17) Me.LabelCompanyName.TabIndex = 0 Me.LabelCompanyName.Text = "Nome società" Me.LabelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelCopyright ' Me.LabelCopyright.Location = New System.Drawing.Point(136, 47) Me.LabelCopyright.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelCopyright.MaximumSize = New System.Drawing.Size(152, 17) Me.LabelCopyright.MinimumSize = New System.Drawing.Size(152, 17) Me.LabelCopyright.Name = "LabelCopyright" Me.LabelCopyright.Size = New System.Drawing.Size(152, 17) Me.LabelCopyright.TabIndex = 0 Me.LabelCopyright.Text = "Copyright" Me.LabelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelVersion ' Me.LabelVersion.Location = New System.Drawing.Point(136, 28) Me.LabelVersion.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelVersion.MaximumSize = New System.Drawing.Size(152, 17) Me.LabelVersion.MinimumSize = New System.Drawing.Size(152, 17) Me.LabelVersion.Name = "LabelVersion" Me.LabelVersion.Size = New System.Drawing.Size(152, 17) Me.LabelVersion.TabIndex = 0 Me.LabelVersion.Text = "Versione" Me.LabelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'LabelProductName ' Me.LabelProductName.Location = New System.Drawing.Point(136, 9) Me.LabelProductName.Margin = New System.Windows.Forms.Padding(6, 0, 3, 0) Me.LabelProductName.MaximumSize = New System.Drawing.Size(152, 17) Me.LabelProductName.MinimumSize = New System.Drawing.Size(152, 17) Me.LabelProductName.Name = "LabelProductName" Me.LabelProductName.Size = New System.Drawing.Size(152, 17) Me.LabelProductName.TabIndex = 0 Me.LabelProductName.Text = "Nome prodotto" Me.LabelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'tbInfoProg ' Me.tbInfoProg.AcceptsReturn = True Me.tbInfoProg.Location = New System.Drawing.Point(12, 88) Me.tbInfoProg.Multiline = True Me.tbInfoProg.Name = "tbInfoProg" Me.tbInfoProg.ReadOnly = True Me.tbInfoProg.Size = New System.Drawing.Size(290, 176) Me.tbInfoProg.TabIndex = 1 Me.tbInfoProg.WordWrap = False ' 'tbInfoSys ' Me.tbInfoSys.AcceptsReturn = True Me.tbInfoSys.Location = New System.Drawing.Point(12, 265) Me.tbInfoSys.Multiline = True Me.tbInfoSys.Name = "tbInfoSys" Me.tbInfoSys.ReadOnly = True Me.tbInfoSys.Size = New System.Drawing.Size(290, 84) Me.tbInfoSys.TabIndex = 2 Me.tbInfoSys.WordWrap = False ' 'AboutBox1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.OKButton Me.ClientSize = New System.Drawing.Size(314, 383) Me.Controls.Add(Me.tbInfoSys) Me.Controls.Add(Me.tbInfoProg) Me.Controls.Add(Me.LogoPictureBox) Me.Controls.Add(Me.OKButton) Me.Controls.Add(Me.LabelCompanyName) Me.Controls.Add(Me.LabelCopyright) Me.Controls.Add(Me.LabelVersion) Me.Controls.Add(Me.LabelProductName) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "AboutBox1" Me.Padding = New System.Windows.Forms.Padding(9) Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "AboutBox1" CType(Me.LogoPictureBox, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents LogoPictureBox As System.Windows.Forms.PictureBox Friend WithEvents OKButton As System.Windows.Forms.Button Friend WithEvents LabelCompanyName As System.Windows.Forms.Label Friend WithEvents LabelCopyright As System.Windows.Forms.Label Friend WithEvents LabelVersion As System.Windows.Forms.Label Friend WithEvents LabelProductName As System.Windows.Forms.Label Friend WithEvents tbInfoProg As System.Windows.Forms.TextBox Friend WithEvents tbInfoSys As System.Windows.Forms.TextBox End Class