I built some custom VBA objects and I would love to be able to save them in my hard drive as they are, so not put them in a database. Can't figure out how to do that.
Just to make my point clear, the code I have in mind would look like something like this:
dim MyObject as MyObjectClass
Set MyObject = new MyObjectClass
MyObject.Whatever = whatever
MyObject.SaveAs (path)
Any clues?