Reputation: 23295
How do you refer to the IsolatedStorage
folder in VB6?
Upvotes: 1
Views: 87
Reputation: 31
You could probably do it by creating a .NET class library that accesses IsolatedStorage and then exposing the resulting assembly as a COM library through the interop layer.
Here's an MSDN article that might help: http://msdn.microsoft.com/en-us/library/zsfww439(v=vs.71).aspx
Upvotes: 3
Reputation: 3697
Isolated Storage is called "isolated", because it can only be accessed by the owning software, which as far as I know, must be a .NET based software.
Because VB6 isn't .NET Based, I don't think that this is possible at all.
Upvotes: 0