Hello,
The software company I'm working for builds software for schools, and so our client machines are usually locked down in such a way it makes it pretty impossible for us to install anything on it.
Our old system is primarily based on a (very large) MS Access project and so it gets around the access problems by just running from a local folder.
I've been given the task of redeveloping some of the system into c# .NET - however it would be nice in the interim stages to have the ability to have the access project fire .NET things off.
I have played around with com interops for a few hours today but afaik the only way to make these work is to register them with RegAsm.exe - and unfortunately this isn't an option in the client environments.
I've tried GetObject / CreateObject but neither work when referencing a dll or tlb file, is there any other way this could be achieved?
The ideal solution would be to put the com interop dll in the same directory as the Access project.
And yes, before anyone says it, I know MS Access is evil and only suited for very small projects - but I only arrived here 4 months ago...
Marlon