yj2000

Hi, I am learning openGL and was trying to write code to display a simple openGL window. I included 'glut.h' in my code but when I run the code (F5), no window is displayed. The output says:

Debugger:: An unhandled non-continuable STATUS_DLL_NOT_FOUND exception was thrown during process load
The program '[1372] 2.exe: Native' has exited with code -1073741515 (0xc0000135).

The platform is VS .Net2003.

Can anyone help
Thanks a lot!


Re: Visual C++ General c++ debug: STATUS_DLL_NOT_FOUND

crescens2k

Well, to me that would say that a DLL that the program is linked to has not been found. Make sure all the relevent libraries are available to the program.




Re: Visual C++ General c++ debug: STATUS_DLL_NOT_FOUND

yj2000

Thanks a lot!

I found the answer: go to project ->properties ->c/c++ general->debug information format

I changed it to program database edit and continue, then it worked!