_ Partial Class FormWait Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ 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 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container Me.progressBar1 = New System.Windows.Forms.ProgressBar Me.labDescription = New System.Windows.Forms.Label Me.timer1 = New System.Windows.Forms.Timer(Me.components) Me.SuspendLayout() ' 'progressBar1 ' Me.progressBar1.Location = New System.Drawing.Point(5, 22) Me.progressBar1.Name = "progressBar1" Me.progressBar1.Size = New System.Drawing.Size(320, 23) Me.progressBar1.TabIndex = 6 ' 'labDescription ' Me.labDescription.Location = New System.Drawing.Point(7, 4) Me.labDescription.Name = "labDescription" Me.labDescription.Size = New System.Drawing.Size(304, 14) Me.labDescription.TabIndex = 5 Me.labDescription.Text = "Please wait..." ' 'timer1 ' ' 'FormWait ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(328, 73) Me.ControlBox = False Me.Controls.Add(Me.progressBar1) Me.Controls.Add(Me.labDescription) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle Me.Name = "FormWait" Me.Text = "Configuration" Me.ResumeLayout(False) End Sub Private WithEvents progressBar1 As System.Windows.Forms.ProgressBar Private WithEvents labDescription As System.Windows.Forms.Label Private WithEvents timer1 As System.Windows.Forms.Timer End Class