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
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