_ Partial Class Background 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.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.Panel1 = New System.Windows.Forms.Panel() Me.Panel2 = New System.Windows.Forms.Panel() Me.SuspendLayout() ' 'Timer1 ' Me.Timer1.Enabled = True Me.Timer1.Interval = 5000 ' 'Panel1 ' Me.Panel1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles) Me.Panel1.BackColor = System.Drawing.SystemColors.ActiveCaptionText Me.Panel1.Location = New System.Drawing.Point(12, 12) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(227, 480) Me.Panel1.TabIndex = 0 ' 'Panel2 ' Me.Panel2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.Panel2.BackColor = System.Drawing.SystemColors.ActiveCaptionText Me.Panel2.Location = New System.Drawing.Point(385, 12) Me.Panel2.Name = "Panel2" Me.Panel2.Size = New System.Drawing.Size(227, 480) Me.Panel2.TabIndex = 1 ' 'Background ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.SystemColors.ActiveCaptionText Me.ClientSize = New System.Drawing.Size(624, 504) Me.Controls.Add(Me.Panel2) Me.Controls.Add(Me.Panel1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Name = "Background" Me.Text = "Background" Me.ResumeLayout(False) End Sub Friend WithEvents Timer1 As Timer Friend WithEvents Panel1 As Panel Friend WithEvents Panel2 As Panel End Class