G Guest Sep 7, 2007 #1 I get a compile error-procedure too large. The sub is 75,188 bytes. What is the limit?
D Dave Peterson Sep 7, 2007 #2 I've never seen a limit documented by Microsoft. Rule of thumb is about 64k.
P Peter T Sep 7, 2007 #4 Are you saying your sub, ie a single routine, that when saved to a text file is 75k, as distinct from a code module of multiple routines. If so, thank the compiler for flagging and reconstruct into many smaller subs & functions. Regards, Peter T
Are you saying your sub, ie a single routine, that when saved to a text file is 75k, as distinct from a code module of multiple routines. If so, thank the compiler for flagging and reconstruct into many smaller subs & functions. Regards, Peter T
G Guest Sep 7, 2007 #5 That is what I am saying, it is 75k worth of text. And to solve the problem, I did break it out until it would run.
That is what I am saying, it is 75k worth of text. And to solve the problem, I did break it out until it would run.