How do you create multiple versions of an ActiveX control?
Posted
by Peter Ruderman
on Stack Overflow
See other posts from Stack Overflow
or by Peter Ruderman
Published on 2010-05-05T20:49:05Z
Indexed on
2010/05/11
4:54 UTC
Read the original article
Hit count: 245
Hopefully this is a straightforward question, but googling has proved fruitless (and frustrating, to say the least). Links to good documentation would be greatly appreciated.
Here's the problem. We have a web application with an associated ActiveX control. (The control wraps a crufty old MFC application if it matters.) Moving forward, we expect to release multiple versions of this application, and each will have a corresponding version of the control.
If someone accesses two versions of the web application, then that user should end up with two different versions of the control on his system. (The controls should play nice and not clobber each other.) In addition, I want to automate this process. Our system has a global version number that applies to all components. If we change the version number, the next build should produce a new version of the control.
What's the best way to do this?
© Stack Overflow or respective owner