Anyone know if it is possible to have an object sitting on a .net server, and have a vb6 client connect and access the object, must be able to cope with events too?
Printable View
Anyone know if it is possible to have an object sitting on a .net server, and have a vb6 client connect and access the object, must be able to cope with events too?
Yup it possible, but its a little tedious since you'll be doing things backwards.
You can make the .NET object COM Complaint.
cool, is it just a flag?
Try searching the help for 'Exposing .NET Framework Components to COM' which is an article on what needs to be done for this. Its mainly using Attributes from the System.Runtime.InteropServices namespace or sharing interfaces.
thx Ed, found what I needed here:
http://msdn.microsoft.com/library/de...nentstocom.asp