views:

55

answers:

1

I want to build an application using Quicktime ActiveX interop that could run on a 64bit windows seven OS. My problem is that the 3 dll : AxInterop.QTOControlLib.dll, Interop.QTOControlLib.dll, Interop.QTOLibrary.dll seems not to be compatible with 64bit OS => It leads to a crash as soon as the application is started. How can I pass through this?

+1  A: 

You must build your program as a x86 program. You can set this at the project properties.

Whiskyfire