Calling .NET code from VBScript

G

Guest

On Win32 it is possible to make calls from VBScript to a library
created in .NET by simply giving the library a strong name,
registering it and adding it to the Global Assembly Cache
i.e. the following code actually works:

Dim dotnetObj
Set dotnetObj = CreateObject("Some.DotNetObject")

However, I can't find any information on how to make this
work in .NET CF. I am wondering if it is possible in 2.0?
If not does anyone know why it is NOT possible?

Thanks,
David Jonker
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top