Hi,
I am trying to store an object in a file. Is this possible?
Dim objTemp As Object
Set objTemp = CreateObject("Something.something")
objTemp.DoSomething
objTemp.DoSomethingelse
now, before I do "Set objTemp = Nothing" I want to store objTemp to a file so I can load back up the same instance of my dll and continue using it. Any ideas on how to do that... both storing, and while you're at it, loading back up? Thanks
Tim
