_ Partial Public Class FormPrompt Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase.Dispose(disposing) 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.Label1 = New System.Windows.Forms.Label Me.ProgressBar1 = New System.Windows.Forms.ProgressBar Me.SuspendLayout() ' 'Label1 ' Me.Label1.Location = New System.Drawing.Point(11, 11) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(312, 24) Me.Label1.Text = "Form loading..." ' 'ProgressBar1 ' Me.ProgressBar1.Location = New System.Drawing.Point(11, 43) Me.ProgressBar1.Name = "ProgressBar1" Me.ProgressBar1.Size = New System.Drawing.Size(312, 24) ' 'FormPrompt ' Me.AutoScaleDimensions = New System.Drawing.SizeF(96.0!, 96.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi Me.AutoScroll = True Me.ClientSize = New System.Drawing.Size(338, 81) Me.ControlBox = False Me.Controls.Add(Me.ProgressBar1) Me.Controls.Add(Me.Label1) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "FormPrompt" Me.Text = "Please wait..." Me.ResumeLayout(False) End Sub Public WithEvents Label1 As System.Windows.Forms.Label Public WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar End Class