how To Talk to a vb6 window from c#

  • Thread starter Thread starter DaveP
  • Start date Start date
D

DaveP

i need to send information back to a vb6 application
that creates object from my c# Dll

i need to update some text boxes
Tia
DaveP
 
Dave,

You should create a COM object in your VB6 app which internally holds a
reference to the form. Then, on that COM object, you would expose
methods/properties that when changed from .NET (you would pass a reference
to this object back to .NET) it would change the properties on the VB6 form.
 
Back
Top