Originally posted by: wristofdoom I really want to just get a few of them working as standalones, like camelcase and under case, but they don't seem to work unless I add in all of the dependencies. Any advice for getting these to work on their own without installing every file that gets referenced? Great library though, thank you for sharing.
Hi wristofdoom!
Probably the easiest thing to do in the long run is to create a C:\Users\Knowbrainer\CommonModules folder and put all the bas files in there. Then you can simply reference the bas file that contains the function you want in your macro, like
'#Uses "C:\Users\KnowBrainer\CommonModules\utilities.bas"
That way, you don't have to copy anything around and can use any functions you want without extra work and all the references should work.
There are a few macros that require MemoryForMacros which will take a little more set up, but the instructions are on my GitHub site. The "camel" and "under case" functions do not need MemoryForMacros, so copying all of the bas files into the new CommonModules ought to do it.
Give it a shot and let me know!
-Doug