Sub mémoriser(ComboBox2)
Dim Ctrl As Object
Lig = 2
For Each Ctrl In ActiveSheet.Shapes
Sheets("Feuil1").Cells(Lig, 1) = Ctrl.Name
Sheets("Feuil1").Cells(Lig, 3) = Ctrl.Top
Sheets("Feuil1").Cells(Lig, 4) = Ctrl.Height
Lig = Lig + 1
Next Ctrl
End Sub
Sub restituer(ComboBox2)
Dim Ctrl As Object
Lig = 2
With Sheets("Feuil1")
While .Cells(Lig, 1) <> ""
ActiveSheet.Shapes(.Cells(Lig, 1)).Top = .Cells(Lig, 3)
ActiveSheet.Shapes(.Cells(Lig, 1)).Height = .Cells(Lig, 4)
Lig = Lig + 1
Wend
End With
End Sub