volvomann Active Member Licensed User Longtime User Mar 15, 2012 #1 Is it possible to create sub routines and save them as file / Function and use them in many APPS as in VB net? If yes, how do I get it fixed
Is it possible to create sub routines and save them as file / Function and use them in many APPS as in VB net? If yes, how do I get it fixed
nfordbscndrd Well-Known Member Licensed User Longtime User Mar 15, 2012 #2 I just cut-and-paste routines to and from a regular text file in a text editor. Upvote 0
lagore Active Member Licensed User Longtime User Mar 15, 2012 #3 If you have a chunk of code that does a particular function then the best option is to create it as a code module (Project > Add New Module > Code Module) then in the next app you can import the module (Project > Add Existing Module) Upvote 0
If you have a chunk of code that does a particular function then the best option is to create it as a code module (Project > Add New Module > Code Module) then in the next app you can import the module (Project > Add Existing Module)