发布网友 发布时间:2022-04-22 00:41
共1个回答
热心网友 时间:2023-07-09 14:07
Sub BlaBla()
...
Application.OnRepeat "Repeat Procere", "Repeat_Sub"
Application.OnUndo "Undo Procere", "Undo_Sub"
End Sub
Sub Repeat_Sub()
Debug.Print "Repeat Here"
End Sub
Sub Undo_Sub()
Debug.Print "Undo Here"
End Sub