Why is Windows pointer pThread null?
This gets deep into the MFC/GUI overhead and what I think of as boilerplate of MFC and a GUI project. Began with a working project. I added two classes, one to do my work and a second example class to see the effects of a reply in this forum and learn…
Developer technologies | Visual Studio | Debugging
How to refresh the notification icon?
Question: I compile an application use Shell_NotifyIcon to set icon(named a), also, I use Shell_NotifyIcon to display a balloon notification, then I publish this application. Now I need change the icon, but I met an question, I refresh the icon…
Developer technologies | C++
Case of initialization in C++ of WinUI 3
Hello everybody, when I try to initialize property members of struct MainWindow: m_myValue = 83; but when I retrieve the same property via getter function int32_t MyProperty() , I get a different value : -33686019 . Where is…
Developer technologies | Visual Studio | Debugging
what does "Go To 0" do in a macro ?
what does "Go To 0" do in nested in a FOR in a macro? Mod moved from : Microsoft 365 and Office | Excel | For home | Windows
Developer technologies | Visual Basic for Applications
.NET MAUI doesn't fullfill entire screen on iOS 18, but is fine on Windows/Android/IOS 16
Hello .NET MAUI doesn't fill entire screen on iOS 18 (see picture of real mobile behaviour) you can recognize MAUI rectange area (background color of Webkit webview controll is full filled on the screen, but all XAMLs like AbsoluteLayout StackLayouts...…
Developer technologies | .NET | .NET MAUI
I am trying to create a Service-Based Database inside the Visual Studio project, but keep getting error indicating the certificate chain was issued by an authority that is not trusted.
I am trying to add a Service-based database in the IDE by using the following: Add/New Item/Service-based Database I get this message and can't find out how to solve this problem for several days now: "A connection was successfully established with…
Developer technologies | Visual Studio | Other
Making TextBox , declared in .xaml visible in struct MainWindow of WinUI 3 ?
Tell, somebody,please, how to make TextBox , declared in .xaml visible in struct MainWindow of WinUI 3 ? As I can see it does not become visible automatically. Function FindName() , suggested by AI, does not seem to exist. PB
Developer technologies | Visual Studio | Debugging
Need a copy of Microsoft Visual C++ 2008 redistributable -x64 9.0.30729.17; version 9.0.30729.161 does not pass installshield.
Installshield is requiring Microsoft Visual C++ 2008 redistributable -x64 9.0.30729.17 to be installed. version 9.0.30729.161 does not satisfy installshield.
Developer technologies | C++
Mongo DB - update server to a new version
Hi, 1.I'm using Maui app in version 9, in VS 2026 , last update. 2.I'm using Mongo: with this app as follow: Server: version 7.0.3. Client (compass): version 1.42.2 There is vulnerability in server version, please see , and use Google Translate to…
Developer technologies | C#
I accidentally deleted the .net desktop. How can I download and reinstall it?
Moderator: Moved form System Center Orchestrator
Developer technologies | .NET | Other
We are able get running COM Server object from client application while running at "LOCAL SERVICE", whereas client is not able to get existing running COM Server object while running at NT Service account. How can we resolve this?
I have configured a VC++ 2022 COM Exe Server in DCOM Config. COM Server Exe name: MyCare.exe Also I have created a wrapper service to host the COM exe during startup. Wrapper Service EXE Name: MyCareWrapperService.exe. I have created a Service…
Developer technologies | C++
Difference between initialized property and got by the "getter"
struct MainWindow : MainWindowT<MainWindow> { private: int32_t m_myValue{ **83** }; //**initialized** public: MainWindow() { } int32_t MyProperty(); void MyProperty(int32_t value); void…
Developer technologies | Visual Studio | Debugging
How to resolve a link error about a pointer?
Windows 11, Visual Studio 2022, C++, project type MFC Gosh, this is too long, but I have been struggling with it all day. I have tried to provide what seems to be essential but as short as I can. Setup: The project has several GUIs. One of the GUIs…
Developer technologies | C++
How to fix The Windows SDK version 10.0.26100.0 for Desktop C++ x64 Apps was not found. Install the required version of Windows SDK or change the SDK version in the project property pages or by right-clicking the solution and selecting "Retarget solution"
This is the error while building KDMF project I cannot find the same version of Windows
Developer technologies | Visual Studio | Setup
How to add all item in listbox 1 to datagridview in column 1.Then for listbox2 to column 2 in datagridview
I have 2 listbox and 1 datagridview. Then 1 button for transferring the item. My listbox1 is the order of customer. My listbox2 is sugar level the item here is 3 only. The problem when i run the code below some item in listbox1 did not tranfer in…
Developer technologies | VB
Error creating Angular stand alone project in Visual Studio 2022
Following this Microsoft document tutorial-asp-net-core-with-angular I am trying to create a solution with an Angular front end and c# api back end. When I click "Create" for the Angular project (using the stand alone template), I get the…
Developer technologies | Visual Studio | Other
Ajax post with C# Handler and XSRF-TOKEN
This question is for Web pages with .NET, C#, and Ajax. I'm having an issue with a ajax calling working with the XSRF-TOKEN" and it's not calling the handler in the .CS. I think I need to do something with my ajax call to validate the token. In my…
Developer technologies | ASP.NET | ASP.NET Core
Issue on VBA MSAccess execute command
Dear Support, I have used for a long the below VBA code run from an excel file to insert the content of one table from one MSAccess DB to a different table placed in a different MSAccess DB placed in a different location: Private Sub…
Developer technologies | Visual Basic for Applications
How to allow my computer to run bat files?
Hi, I turned a text file (with code) into a .bat file, and tried to open it, and all It said was: Windows 11
Developer technologies | C#
GIS Converter - Converts input file to its original
1.I need to extend the GIS converter funcuality. 2.This the command: GISConverter.Cli.exe gis_convert <input> <format> <output> <temp> [Log <log_path> [level]] <input> - this can be a single or an archive file. We…