0

I have a deeply ingrained ActiveX control in our system which I would like to learn about / fix!

I am thinking about wrapping this MFC dll with a transparent proxy class that will intercept the member etc.

HOW can this be approached in MFC.

Thanks!

divinci
  • 22,329
  • 11
  • 45
  • 56

1 Answers1

1

You could start by generating an ActiveX wrapper using AxImp, then modifying the generated wrapper with your intercept code. See this question for details on manually generating the wrapper.

Community
  • 1
  • 1
Aidan Ryan
  • 11,389
  • 13
  • 54
  • 86