Do While nf <> ""
Cls.Sheets(1).Cells(82, Colonne).Select
On Error Resume Next
Set monimage = Cls.Sheets(1).Pictures.Insert(Chemin & "Photo\" & poteau & "\" & nf)
If monimage.Height > monimage.Width Then
monimage.Height = 230
monimage.Top = Cells(82, Colonne).Top
monimage.Left = Cells(82, Colonne).Left
Else
monimage.Width = 270
If monimage.Height > 230 Then
monimage.Height = 230
End If
monimage.Left = Cells(82, Colonne).Left
End If
Colonne = Colonne + 12
If Colonne = 25 Then
Exit Do
End If
nf = Dir ' image suivante
Loop