Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Done Specify which LIBRARY to run command from

Aug
1,917
68
Similar to the PLUGIN command, specify a particular library to execute by prefixing the command name with the library name and a $. For example:
Code:
mylibrary$mycommand

Joe
 
In a quick test, it seemed that two library routines with the same name but in different files are not both loaded into memory. So the suggestion won't work without further changes. But ...

If you have mycommand in file1 and mycommand in file2, and you're willing to use file1$mycommand and file2$mycommand to distinguish between them, why not name the routines file1mycommand and file2mycommand (and put them whereever you like). That way you can skip typing the '$' when you invoke them! :-)
 
@vefatica, you are correct that if a command is in more than one library, both are not loaded into memory.

I've gone through the one library, and "repaired" the commands to what I have done in my other libraries, that is:
Code:
library.command
...so now I have
Code:
calc.vb
calc.vbtest
calc.AddOne
calc.SVJob

Joe
 
Last edited:

Similar threads

Back
Top