如何将一个大的VBA程序分解成几个小的程序
发布网友
发布时间:2024-09-26 01:47
我来回答
共1个回答
热心网友
时间:2024-10-04 11:03
按功能分成几个模块,然后在主模块中通过CALL语句调用功能模块即可。
sub main()
call tt
call pp
end sub
sub tt()
...
...
end sub
sub pp()
...
...
end sub
热心网友
时间:2024-10-04 11:00
按功能分成几个模块,然后在主模块中通过CALL语句调用功能模块即可。
sub main()
call tt
call pp
end sub
sub tt()
...
...
end sub
sub pp()
...
...
end sub