nupenGl and visual studio 2015 [closed] - c++

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I am using Visual C++ 2015. I downloaded NupenGl and extracted and when creating new projects I set the additional include libraries and additional linker input.
When I run the program I get error:
glutInit(& amp; argc, argv); // amp is undeclared identifier
so what's missing? thanks in advance

You have broken sources. Correct code should be: glutInit(&argc, argv);.
It seems that & was replaced by & converting the text to URL representation. If you downloaded that code - try another method of downloading without breaking files.

Related

How do I find and put the correct dependances for my program? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 2 days ago.
Improve this question
I was programming in C++ a small program using QMultiMedia and QAudioOutput.
I compile and run my program in Qt (6.4) without error however when I run my program in File Explorer, when all DLLs are present, I get this error:
'could not load multimedia backend'"
QtMultimedia is not currently supported on this platform or compiler.'
So I started my research and I found several solutions however I did not understand their explanations very well (I start ...).
Here are the links I found:
-> Qt forum
-> Bugreports
-> CSDN
I tried to copy all the DLLs in mingw/bin in my folder or there is my .exe, I also copied the multimedia plugin (from mingw/plugins) to my folder or there is my .exe.
I'm on Windows 10 22h2.
Could you give me a clearer explanation? I would be very grateful.
Kind regards
Albin

I want to be directed to my compilation errors in visual studio (C++) [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I am using VS community 2017 (MS Visual C++).
When I compile my project, it shows me the compilation output in the VS's console.
When I have compilation errors, it indicates the file and line of the error, in the VS's console.
But I wish the VS automatically redirected me to that file/line if I click on the error.
Obviously, it doesn't do anything after I click, because it is just a plain text console.
I'm sure there has to be a way to click on the errors and get directed to the code.
I'm tired of looking up my errors manually!
Thanks!!!
Visual studio has this built in. If you double click on the error in the error list it will take you to the file and line the error is for.
For example you would double click in the area inside the circle and it will take you to that error.
You can even get this in the output window if you double click on the error line

Visual Studio (.exe) export not working [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I've made a simple program in c++ and SDL that utilizes both SDL_Mixer and SDL_Image. However when I try to run the .exe in the debug folder I receive a black screen with no sound or images despite the program working quite properly in Visual Studio. All the dll's are where they should be and I've made sure everything should work. So why am I receiving a black screen instead of my program. Thanks.
I receive ... no ... images despite the program working quite properly in Visual Studio.
If you're using relative paths to load external resources like images then verify your program's working directory matches what it is when Visual Studio launches it.

Making an executable file out of a project/solution in VS2015 Community Edition (C++) [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'm new and trying to get on learning the C++ language but have so far been unable to find how to create an executable file. And whenever I find even close to a solution (although I can no longer seem to find the site that I found one at) I cannot seem to find the tabs or sub tabs that they say to look under. If anyone versed in Visual Studio 2015 could help me find out how to do this it would be greatly appreciated.
You are looking for "Build" or "Build Solution".
And (most likely) you are working within a "Debug configuration", so the .EXE file will be buried in a "Debug" subdirectory of your Project's directory.
Building in Visual Studio

error: symbol not found (C++) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
When I run my application, it says CXX0017 error: symbol not found, whereas that particular variable does not even exist in the code. I used it previously, and then removed it. Now, even after I cleaned and rebuilt the solution, it is still throwing it. I've checked the modules, and the PDB file is correct. Also, I deleted the PDB file and built it again, but no use. This is in Visual Studio 2010. I've searched about this, and some say that this is a bug related to Visual Studio 2010. I wanted to ask if anyone found a solution to this?
Thanks for your time
CXX0017 is a debugger error issued when a breakpoint watch uses an identifier that is not available. Remove or edit your breakpoints to stop using that identifier and the problem should go away.