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

Sort by: Updated
4 answers

How to achieve separate heap handling in VS 2022 C++ DLLs ?

Earlier Visual Studio versions (e.g. VS2010) used separate heap for each C++ DLLs and the main application (also C++). In VS2022 the main application and the loaded DLLs share the same heap.   We would like to restore the original behavior: separate heap…

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,105 questions
asked 2026-08-27T11:24:49.96+00:00
Muduli, Rupamudra 0 Reputation points
commented 2026-08-28T10:28:29.5566667+00:00
Viorel 127.3K Reputation points
2 answers

C++ Program Being blocked by SAC after adding Cryptographic token

I am writing a Console application in Visual Studio, as a proof of concept, before I write the actual program I am wanting to make, the program ran perfectly fine for the last two days during small iterative upgrades, I have no build issues, but as soon…

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,105 questions
asked 2026-08-22T00:49:37.36+00:00
Casey French 0 Reputation points
answered 2026-08-27T04:16:09.32+00:00
Amit Yadav 0 Reputation points
2 answers One of the answers was accepted by the question author.

Is renaming an unmodified Visual C++ Runtime DLL allowed for redistribution?

Subject: Is renaming an unmodified Visual C++ Runtime DLL allowed for redistribution? We distribute a Windows x64 desktop application that includes the official NumPy 2.5.1 Windows wheel. That wheel was processed by delvewheel and contains the Microsoft…

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,105 questions
asked 2026-08-21T14:01:33.6166667+00:00
nhpokon 40 Reputation points
commented 2026-08-24T04:47:11.95+00:00
nhpokon 40 Reputation points
0 answers

C# to C++/MFC duplex mode - Concept

Hello, I have a static MFC C++ application, I cannot change it. (CLI is not possible) I now need to pass data from a C# DLL in the C++ application and transfer it from the C++ to the C# DLL. What possibilities do I have to implement this…

Developer technologies | .NET | .NET CLI
Developer technologies | C#
Developer technologies | C#

An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.

11,814 questions
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,105 questions
asked 2021-06-30T18:58:17.22+00:00
Markus Freitag 3,791 Reputation points
2 answers

How to download Microsoft Visual C++ 2015–2022 Redistributable (64x)

Hey! I bought the game Subliminal on Steam and downloaded it into my Crossover bottle (I'm using Mac), and I got this error message, but I can't find where to download Microsoft Visual C++ 2015–2022 Redistributable (64x) into that Crossover bottle.

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,105 questions
asked 2026-08-14T19:28:44.3566667+00:00
Gáspár Békés-Varró 0 Reputation points
commented 2026-08-21T00:29:04.3933333+00:00
Jay Pham (WICLOUD CORPORATION) 4,355 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,105 questions
asked 2026-08-05T01:33:18.3466667+00:00
Sid Kraft 96 Reputation points
commented 2026-08-12T03:34:12.85+00:00
Tom Tran (WICLOUD CORPORATION) 5,705 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,105 questions
asked 2026-08-05T01:21:39.1133333+00:00
Sid Kraft 96 Reputation points
commented 2026-08-12T03:04:31.9+00:00
Danny Nguyen (WICLOUD CORPORATION) 8,535 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,105 questions
asked 2026-08-04T15:03:58.9933333+00:00
Sid Kraft 96 Reputation points
commented 2026-08-12T02:57:42.1566667+00:00
Taki Ly (WICLOUD CORPORATION) 4,275 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,105 questions
asked 2026-08-01T13:52:18.02+00:00
Sid Kraft 96 Reputation points
commented 2026-08-10T02:35:58.7233333+00:00
Danny Nguyen (WICLOUD CORPORATION) 8,535 Reputation points Microsoft External Staff Moderator
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,105 questions
asked 2026-07-31T13:51:41.21+00:00
Sid Kraft 96 Reputation points
commented 2026-08-10T02:27:46.51+00:00
Taki Ly (WICLOUD CORPORATION) 4,275 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,105 questions
asked 2026-08-01T02:09:07.6133333+00:00
Sid Kraft 96 Reputation points
commented 2026-08-10T01:32:56.55+00:00
Jay Pham (WICLOUD CORPORATION) 4,355 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,105 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,105 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,105 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) 8,155 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,105 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) 8,155 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,105 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) 8,155 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,105 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) 8,155 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,105 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) 8,155 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,105 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) 8,155 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,105 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) 8,155 Reputation points Microsoft External Staff Moderator