Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
Application.EnableEvents = False
If Intersect(Target, Range("Plage")) Is Nothing Then Exit Sub
If Target.RowHeight <> H_Ligne And IsEmpty(Target) Then Target.RowHeight = H_Ligne : GoTo fin
fin:
Application.EnableEvents = True
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("Plage").Height <> H_Totale Then
MsgBox "Créer page"
End If
End Sub