4,103 questions with Developer technologies | C++ tags

Sort by: Updated
3 answers

Ending a function

void display(void); { glClearColor(1.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glLoadIdentity(); glFlush(); } void glutInit(int* argcp, char** argv); { glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH); …

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-31T13:51:41.21+00:00
Sid Kraft 96 Reputation points
commented 2026-08-06T10:37:12.17+00:00
Taki Ly (WICLOUD CORPORATION) 3,540 Reputation points Microsoft External Staff Moderator
3 answers

Already has a body

//OpenGL functions, open a window and initialize void display(void) { glClearColor(1.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glLoadIdentity(); glFlush(); } void glutInit(int* argcp, char** argv) { glutInitDisplayMode(GLUT_RGB |…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-08-01T13:52:18.02+00:00
Sid Kraft 96 Reputation points
commented 2026-08-06T03:23:52.5+00:00
Danny Nguyen (WICLOUD CORPORATION) 7,925 Reputation points Microsoft External Staff Moderator
3 answers One of the answers was accepted by the question author.

OpenGL glutInit 2

#include <iostream> #include<Gl\gl.h> #include<GL\glut.h> #include<GL\freeglut.h> #include<cmath> using namespace std; int main() { void display(void) { glClearColor(0.f, 0.f, 0.f, 1.f); …

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-08-01T02:09:07.6133333+00:00
Sid Kraft 96 Reputation points
commented 2026-08-06T02:02:04.88+00:00
Jay Pham (WICLOUD CORPORATION) 3,825 Reputation points Microsoft External Staff Moderator
3 answers

Keep Window Open

Running C++, OpenGL and graphics output with Visual Studio. Running OpenGL with a graphics window, when I execute, the window immediately closes at the program end before I can see what is happening. How does one keep the window open that has been…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-08-05T01:21:39.1133333+00:00
Sid Kraft 96 Reputation points
answered 2026-08-05T08:42:06.08+00:00
Danny Nguyen (WICLOUD CORPORATION) 7,925 Reputation points Microsoft External Staff Moderator
2 answers

glutInit Placement

//OpenGL functions, open a window and initialize void display(void) { glClearColor(1.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glLoadIdentity(); glFlush(); } //rename glutInit as one already in library, to eliminate "already has a…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-08-04T15:03:58.9933333+00:00
Sid Kraft 96 Reputation points
answered 2026-08-05T07:16:59.2166667+00:00
Taki Ly (WICLOUD CORPORATION) 3,540 Reputation points Microsoft External Staff Moderator
2 answers

Keep the gluInit Window Open

//OpenGL functions, open a window and initialize void display(void) { glClearColor(0.0f, 1.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glLoadIdentity(); glBegin(GL_LINES); I = 0.; do { glVertex3d(PLOTX[I], PLOTY[I],…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-08-05T01:33:18.3466667+00:00
Sid Kraft 96 Reputation points
answered 2026-08-05T02:49:17.7266667+00:00
Tom Tran (WICLOUD CORPORATION) 5,625 Reputation points Microsoft External Staff Moderator
2 answers One of the answers was accepted by the question author.

How can we extract startup UWP applications?

I am using C++ code base to develop a forensic tool. The requirement is to display all the startup applications. However UWP apps which are enabled to run at startup, are not found in RegEdit at…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2021-06-15T05:20:12.943+00:00
S#v#n&h#i-Durga 26 Reputation points
commented 2026-08-03T12:48:42.6366667+00:00
kausharbatcha .A 0 Reputation points
2 answers One of the answers was accepted by the question author.

How Do I Find Indent or Depth of an HTREEITEM?

Hello Folks and AI assistants: I send TVM_GETINDENT to learn how much each tree item is indented relative to its parent. I want to know how much a particular treeview item is indented. For this I need to know the depth a particular HTREEITEM is in…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-08-03T02:07:22.99+00:00
Larry 60 Reputation points
accepted 2026-08-03T09:31:16.9666667+00:00
Larry 60 Reputation points
2 answers

OpenGL Follow on

Progressing with the OpenGL and producing a window to output graphics data, was told to enter the following but do not understand the data: 1.) glutInit (&arg1, arg2), arg1 integer, arg2 string was suggested on-line that if the values not…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-23T22:23:25.1933333+00:00
Sid Kraft 96 Reputation points
commented 2026-07-31T03:02:45.23+00:00
Nancy Vo (WICLOUD CORPORATION) 7,985 Reputation points Microsoft External Staff Moderator
1 answer

visual C++ redistribuable

Où puis-je télécharger la version pour mon ordinateur de Microsoft visual C++ redistribuable 2015-2022 ?

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-23T17:28:31.7533333+00:00
bruno d'aloise 0 Reputation points
commented 2026-07-31T03:00:58.88+00:00
Nancy Vo (WICLOUD CORPORATION) 7,985 Reputation points Microsoft External Staff Moderator
5 answers

Getting Freeglut C++

I am programming in C++ using Visual Studio. I thought that I had all of the #include<...> directives in my program but after I tried to open a window to output graphic data from OpenGL, still looking for directives or library elements. Went to the…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-22T23:30:13.08+00:00
Sid Kraft 96 Reputation points
commented 2026-07-31T02:51:25.31+00:00
Nancy Vo (WICLOUD CORPORATION) 7,985 Reputation points Microsoft External Staff Moderator
2 answers

winio@ Graphics

Programing in Visual Studio, C++ want to open a graphics window with winio@ whet directive headers, #include <....> do I need? Sid Kraft

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-21T12:42:06.8+00:00
Sid Kraft 96 Reputation points
commented 2026-07-29T02:36:29.3066667+00:00
Nancy Vo (WICLOUD CORPORATION) 7,985 Reputation points Microsoft External Staff Moderator
3 answers

how to get microsoft c++ v2013

how to download microsoft c++ v2013. all version needed to solve problems with EnCapta siemens

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-20T23:34:05.4233333+00:00
Martín Romero 0 Reputation points
commented 2026-07-28T02:10:26.2966667+00:00
Nancy Vo (WICLOUD CORPORATION) 7,985 Reputation points Microsoft External Staff Moderator
2 answers

OpenGL Review

Running Visual Studio, C++ trying to access the OpenGL Library functions. Per provided instructions, I did the following: -Created a folder in my system C:\OpenGL Library -Went to C:\Program File (x86)\Windows…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-16T16:58:44.41+00:00
Sid Kraft 96 Reputation points
commented 2026-07-24T02:35:46.47+00:00
Nancy Vo (WICLOUD CORPORATION) 7,985 Reputation points Microsoft External Staff Moderator
1 answer

C++ Linker Error

Running Visual Studio, C++. Removed all references for the C/C++ and VC++ to additional libraries. Removed any references for the linker library, downloaded and executed the command under the Power Shell to load vcpkg, i.e. vcpkg integrate install, was…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-15T17:52:07.2533333+00:00
Sid Kraft 96 Reputation points
commented 2026-07-23T02:29:29.8766667+00:00
Nancy Vo (WICLOUD CORPORATION) 7,985 Reputation points Microsoft External Staff Moderator
2 answers

How To Read Data From ODBC And Send It Into Excel Defined Names in C++

Hello C++ COM Experts, We have developed a way of storing SQL in the cloud, reading it, resolving parameters, running it, fetching results, and sending the results into Excel PowerPivot and refreshing the charts. This is very useful in the world of…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-06-30T09:15:11.2933333+00:00
Peter Jones (BIDA) 151 Reputation points
commented 2026-07-22T07:30:39.68+00:00
Taki Ly (WICLOUD CORPORATION) 3,540 Reputation points Microsoft External Staff Moderator
3 answers

C++ I/O Readable

Not sure what I am doing wrong but this should output readable values, does not: #include fstream; float PLOTX[20]; float PLOTY[20]; float PLOTZ[20]; int INOW=20; I = 0; //Open the output file for writing ofstream out("C:/Plot Data"); do { …

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-13T00:10:00.6833333+00:00
Sid Kraft 96 Reputation points
answered 2026-07-20T14:41:28.5933333+00:00
Bruce (SqlWork.com) 84,856 Reputation points
3 answers

OpenGL using vcpkg

The solution did work for downloading and executing the vcpkg program by bypassing the strict, built in version . However, after the statement #include <GL/gl.h> and did the re-load in visual studio with C++, the loader still gave me the error…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-08T23:19:31.49+00:00
Sid Kraft 96 Reputation points
commented 2026-07-16T03:39:22.96+00:00
Taki Ly (WICLOUD CORPORATION) 3,540 Reputation points Microsoft External Staff Moderator
2 answers

OpenGL Libraries

Have downloaded the file glut-3.7 which contains OpenGL support files. However, when I set the compiler and linker files to access elements in the library, I consistently get errors trying to open the .obj files, apparently do not exist in any of the…

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-07T13:22:32.5433333+00:00
Sid Kraft 96 Reputation points
commented 2026-07-15T02:11:54.85+00:00
Taki Ly (WICLOUD CORPORATION) 3,540 Reputation points Microsoft External Staff Moderator
2 answers

OpenGL Contents

Interesting, downloaded the files for OpenGL, C++ use in Visual Studio. When I included the headers glut.h, got several compiler errors saying "C" not recognized. Opened the glut.h file and following shown???

Developer technologies | C++
Developer technologies | C++

A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.

4,103 questions
asked 2026-07-06T13:51:35.4+00:00
Sid Kraft 96 Reputation points
commented 2026-07-14T02:46:09.0966667+00:00
Nancy Vo (WICLOUD CORPORATION) 7,985 Reputation points Microsoft External Staff Moderator