How to develop a basic website using C++
Specifically, I would like to know: What tools or frameworks are needed to use C++ in web development? Can C++ be used to serve web pages or handle backend logic, similar to Node.js or Python Flask? Are there any simple example projects or templates…
C++
windows11+intel BT5.3 bluetooth SCO remote connect Failure
brb = (struct _BRB_SCO_OPEN_CHANNEL*) &(connection->ConnectDisconnectBrb); devCtx->ProfileDrvInterface.BthReuseBrb((PBRB)brb, BRB_SCO_OPEN_CHANNEL_RESPONSE); brb->Hdr.ClientContext[0] = connectionObject; brb->BtAddress =…
C++
Windows Hardware Performance
Windows 11
How to get specific error code with MSXML SAX validator
When I use MSXML DOM model for validating a XML file against a schema, I get validation error "0xc00ce014" for XML structural issues. Now, we need to use MSXML SAX model for validating XML file as its very big. Using this model we always get…
C++

How to retrieve the size and position of the initial document of the MDI interface of an MFC application?
So as for the MFC MDI application that is generated by the application wizard of Visual Studio... How and where in code should the size and position of the initial document that is open in the MainFrm when the main window of the application is opened and…
C++
How to solve this redundant drawing issue for window splitter?
// Win32-Desktop-Tab-Overlay-Splitter-RichEdit.cpp : Defines the entry point for the application. // #include "framework.h" #include <commctrl.h> #include <iostream> #include "resource.h" #pragma comment(lib,…
C++
Is administrator permission required when parsing ICMP messages using raw sockets?
We need to use ICMP or UDP to implement Traceroute to detect nodes on the network. Although the raw socket can be avoided during the sending UDP message stage, in the message reception stage, the raw socket must be used to parse ICMP messages. It has…
C++

how to get g-code of 3d ?
Can i ask that how to get g-code of 3d for CNC? I want to this: not 3d printer
C++
How to get the Native Activity App (Android)?
I wanted to create an app for android in visual studio community 2022, and all of the tutorials on youtube or internet talks about the template of native activity app or opengl-es app. Although i have installed mobile development with c++ but i cant see…
Visual Studio
C++
how to send apdu via scardTrasmit ?
Hi MSFT Developers: I am developing an LPA application using the scard api。 I can connect to "Microsoft UICC ISO Reader 74be87c8 1" via SCardConnectA. But when I send terminal_capabilities apdu =…
C++
How to create a transparent overlay window for each document of an MDI for MFC?
As regards to a Multiple Document example for the Microsoft Foundation Classes generated by the Visual Studio Professional application wizard, I have made a few modifications to implement a transparent overlay window feature for each document of the MDI.…
C++
Is it possible for me to call raise(sig) from Rust?
I am trying to call this function: https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/raise?view=msvc-170 from Rust. But it doesn't seem to be in any of the windows-rs crates. How might I do the equivalent?
C++
How to set COE (Continue On Error) for AddressSanitizer with VS2022 IDE?
https://learn.microsoft.com/en-us/cpp/sanitizers/asan-continue-on-error?view=msvc-170 This link introduces how to use Address Sanitizer Continue On Error to find memory safety issues. But it just introduce the method for the mode of "Developer…
C++
Could you explain why the _Hash class manages buckets using both lower and upper bounds?
Hello, First of all, I’d like to kindly ask for your understanding as I’m using a translation tool to write this message. While looking into the msvc C++ _Hash class, I came across something I didn’t fully understand, so I’m reaching out with a question.…
C++
can not use lib
I want to use lib but there is errors:
C++
Managed the users
I am working on web application and i want to take a feature like some on is already logged in and than other one is log in same id but different device than show a msg to previous one Id logged in into another device.I achived this almost but not able…
C++
Native IMAP Library for Windows - C++
Hi everyone, I'm developing a Windows desktop application in C++, and I need to implement IMAP functionality (reading and filtering emails, listing folders, etc.). I’m aware that Windows provides MAPI (Messaging API), but as far as I understand, it's…
C++
I have Qt6gui.dll file in my folder, but vs bias to search for the .pdb file, I don't have this file and I can't find it
I added qt's bin directory something was wrong but i can't fix ); Thanks for ur help
C++
How do I move the Windows software development kit to a D drive?
Hi friends! How do I move the Windows software development kit to a D drive?I need it
C++
how to use class variable in class ?
I want to use variable in class class Path{ public: float get_x(){ int x=0; for(int i=0;i<ARRAYSIZE(Paths);i++){ if(Paths[i].r){ return Paths[i].id; } } } } Path Paths[30]; but there will be error right? I can not use Paths in class
C++
After VS2022 version 17.12.0 update Address Sanitizer no longer works for my C++ project
I've just updated visual studio to the version in the topic and the project which worked ok 5 minutes ago with Asan on (/fsanitize=address) now throws this error when starting the debugger: The procedure entry point __sanitizer_ignore_free_hook____dll…