I have a program opengl in C# using framework Tao, when i run the code in the platform target to x86, i have not a problem,but when i run the code in the platform target to x32, it stops abruptly and says the following

"An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)"

Please advice what to do because i need to run my program in 64 bits

link|improve this question
Should that be 'when I run the code with the platform target as x64' ie x64 not x32? – Bob Vale Aug 22 '11 at 10:44
The HRESULT indicates it's trying to load a dll with the wrong 'bitnes', google shows a few results for this error for people on 64bit platforms. – Russ C Aug 22 '11 at 10:54
feedback

1 Answer

My gut feeling is that the Tao library is 64bit, if your program is compiled at 32bit, it can't link to 64bit lobs, even running on a 64bit machine. At least not without a thinking layer and you don't want that in a graphics loop.

link|improve this answer
That or the library was built to target x86 and doesn't like being called as a pure x64, if bob is correct! – Russ C Aug 22 '11 at 10:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.