A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
Unable to activate the Azure $150 monthly credit
The concern is I have Visual Studio Enterprise with GitHub Enterprise, and I am unable to activate the Azure $150 monthly credit.
Developer technologies | Visual Studio | Other
Playwright headed browser does not run via VS Code Remote SSH but works via MobaXterm X11 forwarding
We are using a Playwright environment hosted on a remote RHEL server and connecting to it using VS Code Remote SSH. When attempting to execute Playwright tests in headed mode from VS Code Remote SSH, the browser fails to start and reports that no display…
Developer technologies | Visual Studio | Setup
The process of installing, configuring, and customizing Visual Studio to support development workflows across languages, platforms, and workloads.
all items in list view are being deleted instead of selected line
the following code will remove all the item in the viewlist, how do I only remove the SelectedObj --------------------- private async void LoadFilterAction() { try { var FilterFile = await…
Developer technologies | XAML
A language based on Extensible Markup Language (XML) that enables developers to specify a hierarchy of objects with a set of properties and logic.
Visual Studio Build Tools licensing
Hello, My company holds licenses for Visual Studio 2017 Professional. I am wondering if it is possible to utilize these licenses with Visual Studio Build Tools, such as those for 2022, without incurring additional charges for a Visual Studio 2022…
Windows for business | Windows Client for IT Pros | Devices and deployment | Licensing and activation
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
WebView2 stops working after 2 - 3 days with HRESULT 0x8007139F in WinForms application
We have a VB.NET WinForms application that uses five WebView2 controls on the same form. A client is experiencing the following problem: WebView2 works normally for approximately 2–3 days. After that, the application only shows the loading state and…
Developer technologies | .NET | Other
Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
Visual Studio Forms Designer: The given key 'reader' was not present in the dictionary.
I get the following error when trying to save a control after changing a property in the Forms Designer: Visual Studio Forms Designer: The given key 'reader' was not present in the dictionary. What causes this error? I have two minimal user controls…
Developer technologies | Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
How to solve System.NullReferenceException?
Hello, I want to Insert data into a MySQL table through a WCF service. My app is a WPF application. I can insert through Mysql and through WCFtestClient, but when I try to insert data from WPF app I get this error. How to check in details to see what is…
Developer technologies | Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
Developer technologies | .NET | Other
Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
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.
How do I create xy plots with WPF APP (.NET Framework)?
Visual Studio 2019 --- Windows Forms App (.NET Framework) C# ... Toolbox => Data => Charts provides the ability to create xy plots. This does not exist in WPF APP (.NET Framework). I've found multiple sites that demo a variety of shapes using…
Developer technologies | Windows Presentation Foundation
A part of the .NET Framework that provides a unified programming model for building line-of-business desktop applications on Windows.
visual studio 2026
cannot open file 'msvcprtd.lib' I have already included the GLFW, GLAD, Shader, and stb_image files correctly. The error appears during the linking stage, not while compiling the C++ code. I want to know why Visual Studio is looking for…
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.
Is there a DPA that covers Microsoft Ajax CDN?
What privacy terms govern Microsoft Ajax CDN? Is there a DPA that covers Microsoft Ajax CDN?
Developer technologies | ASP.NET Core | Other
A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
Is .NET 4.8.1 the same as 4.8.09037?
The registry version of .NET on my windows PC shows 4.8.09037. Is this the same as .NET 4.8.1?
Developer technologies | .NET | .NET Runtime
.NET: Microsoft Technologies based on the .NET software framework. Runtime: An environment required to run apps that aren't compiled to machine language.
SELECT bottom SQL
There are times where I find Select TOP Order By [ASC/DESC] does not make sense but BOTTOM. Does SQL Server support the bottom command?
Developer technologies | Transact-SQL
A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
SQL Server | Other
Additional SQL Server features and topics not covered by specific categories
Security issues if I use a encrypted value as a Query string that I send to users and then decrypt the value and validate on link click?
I'm working on a project where we will need to send out links to a large number users and each is assigned a unique combination of numbers and letters to identify them in our system. My task it to come up with a way we can use just the link we send them…
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.
How to set up VS code and use python on new surface laptop? (Processor: Snapdragon X2 Elite @ 4.03 GHz (4.03 GHz))
I bought a new surface laptop for grad school (computer details at the end of the post) in July 2027. My program requires us to learn python. We used VS code in our first class to complete assignments. However, the professor, TAs, and I had issues…
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
How to download the visual studio 2015 shell isolated version & what is latest version
Hi Team, How to download the latest visual studio 2015 shell isolated software . And what is the latest version.
Developer technologies | Visual Studio | Extensions
Add-on components that enhance and customize the Visual Studio integrated development environment
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
Configuration Playfab Branche Dev et Prod
Bonjour, Je travaille actuellement sur un projet de jeu multijoueur développé avec Unity, pour lequel nous utilisons PlayFab afin de gérer notamment les données des joueurs, le matchmaking et le backend via CloudScript. Nous sommes actuellement en train…
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
Need help showing Output window
Windows 11, Visual Studio 2022, Version 17.13.3 First, I seem to be in the wrong place. None of the options for Select Tag, Select a child tag, and Select a child item tag, are appropriate for Visual Studio. But I know not where else to post. I posted…
Developer technologies | Visual Studio | Debugging
A core feature of Visual Studio that allows developers to inspect, analyze, and troubleshoot code during execution.
Creating a new List<int>() throws a NullReferenceException.
The following code throw a NullReferenceException on the hightlighted line: using IS0AUTTSTContext db = GetDbContext(); List<TestRun> list = db.TestRuns.Where(t => t.ID > 0 && t.Definition!.Application!.Deleted == false).ToList(); …
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.
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++
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.
My Visual studio Subscription got disabled how to enable again.
My Visual studio Subscription got disabled on Azure after removing the owner role by mistakenly. how to enable again is there any alternative to enable and make use my vs subscriptions
Developer technologies | Visual Studio | Other
A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.