Browser in c#

  • Thread starter Thread starter Darren B
  • Start date Start date
D

Darren B

I need to create a custom control to display a web browser in a C# app
without going down the Interop/ Microsoft ActiveX Browser control route. I
am not in a position to distribute the interop files to all the desktops as
the app is already out. Does anybody know if this is possible or have an
example probably using Reflections Type.InvokeMemeber methods.
Cheers
 
Darren,

You can generate the source files for the interop DLL and include them into
your project (to a separate folder, probably), so you will still benefit
from Interop amenities but do away without creating a separate DLL.
 
Back
Top