116,105 questions
1
vote
0
answers
35
views
SDK "Microsoft.NET.Sdk.Android" not found
I am using VS 2026 Community Insiders. Due to the SDK "Microsoft.NET.Sdk.Android" not being found, I cannot compile Android apps.
This start with a simple .NET Android app. I added all of my ...
-1
votes
0
answers
44
views
Make "Commit All and Push" default action in VS2026
Whenever I want to commit and push my changes to a remote repository using the GUI in Visual Studio 2026 Community I find myself clicking on the dropdown option and then clicking on action "...
-11
votes
0
answers
261
views
How do I understand and solve an "unresolved external symbol" linking problem?
I'm building a solution in Visual Studio, which consists mostly of C++ projects, based on vcpkg technology.
While performing a build of that solution, one project build is failing, as described in the ...
0
votes
0
answers
42
views
Visual Studio link error LNK1104 WebView2
I'm getting an error when trying to compile in Visual Studio 2026 with Windows 11.
cannot open file '../../WebView2/1.0.1901.177/build/native/x64/WebView2LoaderStatic.lib'
I mainly develop on Mac, so ...
0
votes
1
answer
118
views
Change Button.Text property to a custom value in C#
public Button()
{
this.Size = new Size(100, 100);
this.ForeColor = foreColor;
this.BackColor = BackColor;
this.Text = "Hello";
}
I created this constructor class to ...
Advice
0
votes
0
replies
16
views
How can i make Syntax highlighting for a custom extension?
i'm working on an llvm<sup>[1]</sup>
based language and i want it to have its own Syntax Highlighting,
i don't know how to do that, and the documentation<sup>[2]</sup> for VSC ...
1
vote
1
answer
44
views
`devenv` too slow to exit. `msbuild` not incremental
I'm trying get a compile error from visual studio into codex-cli/claude-code, without copy pasting. I'd like to switch between building from the command line and from the IDE. It's a c++ project.
...
-1
votes
1
answer
102
views
How do I add a variable to a dialog box (Changed add variable behaviour) [closed]
I have added thousands of variables to dialog boxes, either with class wizard or by right clicking on the variable in the dialog box editor.
Today, however, when I try to add a variable, I get a ...
Tooling
0
votes
0
replies
48
views
Live Sharing / Collab VS 2026
How can i do live sharing with my team to collab as we have a case study for our final project. Should i use the live sharing 2022 that i found in extension managers? Please help me ...
-3
votes
0
answers
94
views
Visual Studio 2017/2019: OutOfMemoryException error during Rebuild
My projects on Visual Studio Community 2017 and 2019 suddenly having OutOfMemoryException error during Rebuild. I have already tried these but issue wasn't resolved.
1. Uninstalling and ...
0
votes
0
answers
142
views
Cannot find C/C++ option in project properties
I’m trying to get my code to recognize #include <SFML/graphics.hpp> or any of the other external headers, but while following the official tutorial for SFML, I am unable to find the "C/C++&...
Tooling
2
votes
0
replies
105
views
Visual Studio documentation reduce IntelliSense list spacing
I like my code documented. But sometimes, Visual Studio won't show me information the way I want.
The <list> tag is one of the annoying ones. If you have one or more item to display, the tooltip ...
0
votes
0
answers
43
views
OLE DB destination missing in SSIS
When working on the set-up of SSIS in Visual Studio, after I installed the OLE DB Driver and double checked that the version is correct, the "SQL Server" is still not a installed type in the ...
Advice
0
votes
3
replies
44
views
Looking for mobile app design platform like old school Visual Studio 2010
About a decade ago I used and became proficient in using Visual Studio 2010 for development of large Windows Forms Applications. I recently was asked to develop a small smartphone app and am looking ...
0
votes
1
answer
97
views
Unsubscribing from a _Leave event does not work
It's a very simple problem, but a bit tricky to explain (hence the diagrams).
I have a ListView. Clicking on an item refreshes a Panel with the data of the clicked item.
Each item has a property value ...