I need to create a VB.net wrapper, that will take data paramters from VB6 to a vb.net 2005 form, and then send values back to the vb6 form.
What is a wrapper How do I create one Can anyone recommend resources
Thanks
I need to create a VB.net wrapper, that will take data paramters from VB6 to a vb.net 2005 form, and then send values back to the vb6 form.
What is a wrapper How do I create one Can anyone recommend resources
Thanks
What is a wrapper?
ogtr
this article has info regarding your question on creating and using wrappers:
http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/html/vbbestprac.asp
good luck!
dave
aaraaayen
This is a good article.
Basically VB6 does not know about .NET and knows about COM technology. .NET as able to create / use COM technology so you are basically creating a layer of code which allows COM calling (Vb6) to call a component which was written in .NET but allows access via to/from COM.
This layer is what a wrapper is - it wraps the .NET functionality in a COM interface allowing it to be called from any application that supports COM. Of course to use this functionality the machine still requires .NET framework to be installed on it.