10-14-2010 10:45 AM
Hello
My environment is Visual Studio 2010. i integrated Measurement Studio 2009.
i will use AxCWGraph3D. so i tested on a XP 32 bits computer. the solution was generated and the application runs.
after i compiled the same software on a Windows 7 64 bits Computer. the solution was generated but when i launched the application, the system sent me this error:
Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))
does a solution exist?
10-14-2010 11:00 AM
Hello Fdavenne -
The likely cause of this issue is that you are building with the Target Platform set to AnyCpu. This would cause your application to run as a 64-bit executable on the 64 bit OS. Because the 3D graph is only 32-bit, the error you are seeing would be expected. To fix this, you just need to set the Target Platform to be x86 in your project settings so that your project will run as a 32-bit executable.
NickB
National Instruments
10-14-2010 02:38 PM
I know it but in my application, i need use some other libraries who run on x64 platform.
does it exist a .Net component to replace this activeX?
is there a solution to obtain the same result with .net components?