Partial Class Form4 Inherits System.Windows.Forms.Form 'Form remplace la méthode Dispose pour nettoyer la liste des composants. 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 'Requise par le Concepteur Windows Form Private components As System.ComponentModel.IContainer 'REMARQUE : la procédure suivante est requise par le Concepteur Windows Form 'Elle peut être modifiée à l'aide du Concepteur Windows Form. 'Ne la modifiez pas à l'aide de l'éditeur de code. Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form4)) Me.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.ProgressBar1 = New System.Windows.Forms.ProgressBar() Me.PictureBox1 = New System.Windows.Forms.PictureBox() Me.PictureBox2 = New System.Windows.Forms.PictureBox() Me.Timer2 = New System.Windows.Forms.Timer(Me.components) CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'Timer1 ' Me.Timer1.Interval = 1 ' 'ProgressBar1 ' Me.ProgressBar1.Location = New System.Drawing.Point(12, 373) Me.ProgressBar1.Name = "ProgressBar1" Me.ProgressBar1.Size = New System.Drawing.Size(10, 23) Me.ProgressBar1.TabIndex = 0 ' 'PictureBox1 ' Me.PictureBox1.BackColor = System.Drawing.Color.Transparent Me.PictureBox1.Image = CType(resources.GetObject("PictureBox1.Image"), System.Drawing.Image) Me.PictureBox1.Location = New System.Drawing.Point(12, -5) Me.PictureBox1.Name = "PictureBox1" Me.PictureBox1.Size = New System.Drawing.Size(881, 266) Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom Me.PictureBox1.TabIndex = 1 Me.PictureBox1.TabStop = False ' 'PictureBox2 ' Me.PictureBox2.BackColor = System.Drawing.Color.Transparent Me.PictureBox2.ErrorImage = Nothing Me.PictureBox2.Image = CType(resources.GetObject("PictureBox2.Image"), System.Drawing.Image) Me.PictureBox2.InitialImage = Nothing Me.PictureBox2.Location = New System.Drawing.Point(71, 79) Me.PictureBox2.Name = "PictureBox2" Me.PictureBox2.Size = New System.Drawing.Size(800, 533) Me.PictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize Me.PictureBox2.TabIndex = 2 Me.PictureBox2.TabStop = False ' 'Timer2 ' Me.Timer2.Enabled = True Me.Timer2.Interval = 1 ' 'Form4 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.SystemColors.ActiveBorder Me.ClientSize = New System.Drawing.Size(883, 408) Me.Controls.Add(Me.PictureBox1) Me.Controls.Add(Me.PictureBox2) Me.Controls.Add(Me.ProgressBar1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Name = "Form4" Me.ShowIcon = False Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.TopMost = True Me.TransparencyKey = System.Drawing.Color.Lime CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Timer1 As Timer Friend WithEvents ProgressBar1 As ProgressBar Friend WithEvents PictureBox1 As PictureBox Friend WithEvents PictureBox2 As PictureBox Friend WithEvents Timer2 As Timer End Class