P Pantelis Member Licensed User Longtime User May 31, 2013 #1 Hi all In beginners guide says Note that it is not possible to use CallSub to access subs of a Code module. Click to expand... What is the proper way to call a sub declared in a code module from an activy module? Also is it possible to call a sub declared in an activity module from a code module?
Hi all In beginners guide says Note that it is not possible to use CallSub to access subs of a Code module. Click to expand... What is the proper way to call a sub declared in a code module from an activy module? Also is it possible to call a sub declared in an activity module from a code module?
thedesolatesoul Expert Licensed User Longtime User May 31, 2013 #2 Calling a sub in a code module: MyCodeModule.MySubInCodeModule(myparams) Calling a sub in an Activity module (give the activity is active): CallSub(MyActivityName,"My_Sub_In_Activity") Upvote 0
Calling a sub in a code module: MyCodeModule.MySubInCodeModule(myparams) Calling a sub in an Activity module (give the activity is active): CallSub(MyActivityName,"My_Sub_In_Activity")