Procedure Too Large

后端 未结 4 781
清歌不尽
清歌不尽 2020-12-01 23:43

I received this error message -Procedure too large - in VBA. What is the reason and way out for this error?

4条回答
  •  半阙折子戏
    2020-12-02 00:01

    The idea of GiantProcedure didn't work for me, using Microsoft Powerpoint 2013. Then I added a "call" before each "proc". Like this:

    Sub GiantProcedure()
    
      Call Proc1()
      Call Proc2()
      Call Proc3()
    
    End Sub
    

    Now, it works.

提交回复
热议问题