j'ai deux form lorsque je fais aparaitre la seconde form elle aparait n'importe où, pourtant je lui précis bien sa location voici mon programme :

--------------------------------------------------------------------------------------
Dim b As Bitmap
Public Sub New()
MyBase.New()
Me.InitializeComponent()
WindowState = FormWindowState.Maximized
End Sub
--------------------------------------------------------------------------------------
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Form2.Location = New Point(178, 140)
Form2.Size = New Size(762, 547)
Form2.Show()
b = New Bitmap("pres4.png")
Form2.BackgroundImage = b
End Sub
--------------------------------------------------------------------------------------
Voila j'espere qu'une personne peut m'aider merci d'avance pour ceux qui prendrons le temps de m'aider.
