I have an activex server exe that builds and registers on a 32 bit OS. I wanted to make a 64-bit version of this exe, upgrading the project to Visual Studio 2010 and changing the platform to X64, which apparently does not work.
The application itself works, but I do not see it registered after launch
That.exe /RegServer
I would appreciate any helpful advice on porting activex from 32 to x64.
The code that processes the / RegServer switch is below:
if(lstrcmpi(lpszToken, _T("RegServer")) == 0) { _Module.UpdateRegistryFromResource(IDR_OUTDISKSARG, TRUE); nRet = _Module.RegisterServer(TRUE); bRun = false; break; }
The 32-bit activex is not available to me, since I have to download it in the x64.NET process.
source share