Donnovan
Donnovan

Reputation: 223

How to fix opengl.dll error

can someone help me with this error! "The PROGRAM CANT START because OPENGL.DLL is missing from your system."

I already put the h. and .dll files in the specific directories. i'm working on a 64 bit window 7. microsoft visual c++.

Upvotes: 0

Views: 3870

Answers (4)

Captain Happy
Captain Happy

Reputation: 1

I had a similar issue and discovered that I had deleted the following line before pasting the test code:

#include "stdafx.h"

Make sure you have the line as above before pasting the test code.

Upvotes: 0

Ethel
Ethel

Reputation: 1

Maybe you could go to one of your friends , and copy this .dll file from his system dictionary

Upvotes: -2

datenwolf
datenwolf

Reputation: 162164

OPENGL.DLL

You are sure about that name. Wasn't it opengl32.dll?

I already put the h. and .dll files in the specific directories

Never(!) do this with opengl32.dll. This is a system DLL and must not be overridden by shipping one own's with the program. If you do this, you may very likely end up with not getting HW acceleration.

Upvotes: 1

peterept
peterept

Reputation: 4427

Most systems already have OPENGL.DLL in the Windows System directory.

The way to diagnose this error is to run Dependency Walker (download here).

Run it and open up your .EXE file - and it will tell you specifically what DLL it can't locate, or which is loaded but is not compatible.

Upvotes: 2

Related Questions