Link to home
Start Free TrialLog in
Avatar of BobSacks
BobSacks

asked on

Visual Studio 2012 - Installshield Limited Edition - ActiveX?

I have Visual Studio 2012 and have developed a Winforms app for a client.  I ordinarily just copy my EXE and required files to the client PC.  In this case, I had to use some third party ActiveX components to talk to an external device.  The OCXs are 32 bit, but work ok with 64 bit Windows, if I compile the app as "x86" instead of "any CPU".

Somehow I missed the fact that the old SETUP tools were removed from Visual Studio in favor of Installshield Limited Edition.   I need to have the install register the OCXs.  I'm not seeing any easy way to have Installshield do that.   When I click on the "Dependencies" in the setup project, it just prompts me to upgrade to a more full-featured version of Installshield.   I briefly considered doing that until I saw the price.  Unbelievable!

Can I get the Limited Edition to register my OCXs?   Did I just miss it?

Thanks!
Avatar of Vadim Rapp
Vadim Rapp
Flag of United States of America image

Here's what you can do:

1. Go back to visual studio release that has what you need. I did, when I discovered that Microsoft dropped support of Windows Mobile platform in favor of Microsoft Phone. So I went back to VS2008. I does everything I need from it.

2. Obtain and use WiX. It will take quite an effort to learn how to do it, but once you do it, you will become independent from Microsoft marketing movements, at least in the area of installations.
ASKER CERTIFIED SOLUTION
Avatar of jiangsheng
jiangsheng

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of BobSacks
BobSacks

ASKER

That's what I was looking for!   Thank you!