yes it is 64bit OS.
hareshel
Posts
-
help on using VC++ libraries -
help on using VC++ librariesBrowsed my ocx file with dependency walker and found out that.... My.ocx file uses MFC90.DLL and MSVCR90.dll. In Dependency walker, it takes the MFC90.dll from C:\windows\winsys\amd64_microsoft.VC90.mfc_***** folder. But MSCVR90.dll from C:\windows\winsys\amd64_microsoft.VC90.crt***** folder. Looking at MFC90.dll dependencies it is not able to find MSVCR90.dll in the C:\windows\winsys\amd64_microsoft.VC90.mfc_***** folder. So...I am not able to register regsvr32 my.ocx file manually. Please help me out here.
-
cab installation failedI have ported my activex plugin to 64bit by compiling with x64. it has created .ocx file as well as .dll file. Created cab and inf file to install my activex plugin. When i install it crashes. I ran dependency walker on .ocx file it says two dlls not found... devmgr.dll dwmapi.dll please let me know how to resolve....
-
porting 32 bit dll in 64 bitI am also facing same issue...I have ported my activex plugin to 64bit by compiling with x64. it has created .ocx file as well as .dll file. Created cab and inf file to install my activex plugin. When i install it crashes. I ran dependency walker on .ocx file it says two dlls not found... devmgr.dll dwmapi.dll please let me know how to resolve....
-
Cab file installation failed in IE 64bit [modified]We have ported windows active x control plugin from 32bit to 64bit and we build cab file with my inf file. We used dependency dlls mfc42.dll,olepro32.dll. when we try to install cab file ...it crashes.... Do we need to change those mfc dll for 64bit? Need help on this. This is my detailed steps 1. Used VS2008 and compiled my active x control project with settings x64. IT generated my.ocx file and my.dll file. 2. My inf file is [version] ; version signature (same for both NT and Win95) do not remove signature="$CHICAGO$" AdvancedINF=2.0 [Add.Code] my.ocx=my.ocx my.dll=my.dll ; These are the necessary supporting DLLs for MFC 4.2 ActiveX Controls mfc90.dll=mfc90.dll msvcr90.dll=msvcr90.dll olepro32.dll=olepro32.dll rac5vml.dll=rac5vml.dll ; thiscab is a keyword which, in this case, means that rac5vm.ocx ; can be found in the same .cab file as this .inf file ; file-win32-x86 is an x86 platform specific identifier ; See the ActiveX SDK - ActiveX Controls - Internet Component Download - ; Packaging component code for automatic download [my.ocx] file-win32-x86=thiscab ; *** add your controls CLSID here *** clsid={CCA1618B-7D6E-4432-8FA4-3E01A1AD78A8} ; Add your ocx's file version here. FileVersion=0,0,0,0 RegisterServer=yes [rac5vml.dll] file=thiscab FileVersion=0,0,0,0 [libeay32.dll] file=thiscab FileVersion=0,9,7,6 [libssl32.dll] file=thiscab FileVersion=0,9,7,6 I tried with mfc90.dll as well as still it crashes...Please help me out here.
modified on Monday, July 20, 2009 2:21 AM