Can a .net app have the same behaviour like an VB6 Activex.exe?

  • Thread starter Thread starter Durval Mateus
  • Start date Start date
D

Durval Mateus

I have an activex.exe with a public class, in order to be accessed by other
apps.

the activex.exe was upgraded to .net, and i'm unable to make other apps
comunicate with the new version.

The activex.exe have some global variables with user input that i want to be
accessed by other applications

Is it possible to do the same with vb.net?

Durval Mateus
 
Hello Norman,

thanks for your reply.

i have been looking for .Net Remoting and i have a small example working
between 2 .net app's.

since my server app is .net and must be accessed by vb6 app's, i want to
know if this is possible, because i'm not seeing how can i do that with a
vb6 client.

currently i have a .net client working, opening a tcp port like:

' the following configures for remoting access
RemotingConfiguration.RegisterActivatedClientType( _
GetType(AutomationLibrary.Application), _
"tcp://localhost:15123/AutomationServer")

mApp = New AutomationLibrary.Application()

But how can i do this with vb6?
 
Back
Top