How to stop Visual Studio's Android emulator displaying off screen.
I'm trying to use Visual Studio 2022 Community Edition to develop a MAUI application for an Android phone. I use a laptop that is sometimes connected to an external monitor. When I'm not connected to an external monitor the Android Emulator that Visual…
Developer technologies | .NET | .NET MAUI
Developer technologies | Visual Studio | Other

combability of Windows 12 with Microsoft Visual C++ 2022 Redistributable (x64) - 14.30.30708
IS Microsoft Visual C++ 2022 Redistributable (x64) - 14.30.30708 compatible with Windows 12?
Developer technologies | C++

visual studio 2017 on windows 11 for iot core x86 uwp app development
Hi, I was using visual studio 2017 community on win 10 pro host m/c. I am learning uwp app development on windows 10 iot core x86 image running in virtual box. My development interest is only 32bit Embedded products only. Recently due to the resource…
Developer technologies | Universal Windows Platform (UWP)
Developer technologies | Visual Studio | Other
VS Code on Windows 11 pops the 'Debugger Stopped" message when debugging Python 3.11.
When trying to debug python code in VS Code using a virtual environment, the "Debugger Stopped" message pops up. When I check the launch.json file, it looks ok. There is a debugpy in the type: parameter When I change that to python, the…
Developer technologies | Visual Studio | Debugging
Keep Advancing VB.NET for Modern Workloads
Visual Basic has been a cornerstone of Microsoft’s developer ecosystem for decades. It continues to power countless business-critical applications, especially in enterprises that rely on stability, readability, and rapid development. While I understand…
Developer technologies | VB
What am I doing wrong?? it loads info into the list. only allows one png file for you to see the load
Listinfo.png
Developer technologies | .NET | .NET MAUI

Problem with NuGet Microsoft Data SqlClient library
Microsoft Data SqlClient is referenced in the Visual Studio C Sharp project. Code throws an error ' The type 'IDbColumnSchemaGenerator' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Data.Common,…
Developer technologies | C#
Send email form Gmail account using C#
When sending an email using the followng code, I'm getting an error, I'm asking for your help. Authentication Required. Learn more at string adSoyad = txtAdSoyad.Text; string konu = "Koçaslanlar Web Konu başlığı"; string epostaAdresi =…
Developer technologies | ASP.NET | Other
Developer technologies | C#
Looking for SQL Server 2019 Architecture Diagram
I am looking for an Architecture Diagram for SQL Server 2019. Can someone point me to a web site? I cannot find anything current.
Developer technologies | Transact-SQL
SQL Server | Other
Git Functionality in Visual Studio 2022 Not Updating Status
When performing Git operations in Visual Studio 2022, such as committing, creating branches, deleting branches, or checking out branches, the Git interface does not refresh to display the latest status after completing the operation. Closing and…
Developer technologies | Visual Studio | Other
IntelliSense doesn't work properly with MSVC standard library and clang-cl compiler
I'm trying to get clang-cl (the compiler I installed via Visual Studio Installer) and IntelliSense to work together. Simple 'Hello world' by C++23 std::println does build and run nicely (even macro __cplusplus is equal to 202302 which indicates that I…
Developer technologies | Visual Studio | Setup
Corrigir acesso a extensões (Cline, Gemin, Codex, Deepseek,...) no VSCode.
Estou tendo problemas para aparecer o chat com linha de prompt em todas as IA's que tenho instaladas com (Gemini, Codex, Cline, Deepseek, ... ) no lado esquerdo da tela no VSCode. Estava funcionando e parou. Alguem ja teve esse tipo de erro sem mostrar…
Developer technologies | Visual Studio | Extensions
HTMLHelp Workshop - download for CHM compiler installation failed
Searching for HTML Help Workshop on https://www.microsoft.com/en-us/search?q=HTML+Help+Workshop gives back a link list and the first link is leading to Microsoft HTML Help Downloads. So, there is a misleading note (running one into a loop) on top…
Developer technologies | Windows Forms
Developer technologies | Windows Presentation Foundation
How to fix VS code debug failure for python
This is what my VS code is displaying even when i try to debug a simple python file of print("Hello World"). I have used Vs code for about a year now and it has never happened. I even re-installed it but it still displays the same. I have even…
Developer technologies | Visual Studio | Debugging
Data importation from excel promblem
How can i solve this in my SQL data importation TITLE: SQL Server Import and Export Wizard ------------------------------ The operation could not be completed. ------------------------------ ADDITIONAL INFORMATION: A network-related or instance-specific…
Developer technologies | .NET | .NET CLI
How to enable IntelliSense on external unity projects?
Hey there. Recently I started working on unity projects with teammates and I encountered a problem where the IntelliSense is disabled on projects from other people. At first VS Code notified me that the workspace isn't trusting this file, so I added the…
Developer technologies | Visual Studio | Extensions
Usage of Singleton HTTPClient in server to server commutation for complex scenario
Hello! With .Net 8.0 I have created a web server application that exposes REST APIs. Some of these APIs need to call other endpoints via HTTPClient: public (internet) APIS that have different authorization types (Bearer for example, no…
Developer technologies | .NET | .NET Runtime
What changes I would need to release Application for Android 16KB in Xamarin.Android?
Hi, in order to meet the "Android 16 KB Memory Page Requirement", is it mandatory to move the app from Xamarin to MAUI or is there any way to do it in Xamarin? Many thanks. Regards.
Developer technologies | .NET | Xamarin
How to test my C++ function
How to test a C++ function? My function returns wrong results. I’m debugging. The only way I can think of is creating a new console application, then copy the function into it and input test data one by one using keyboard. Do you have better…
Developer technologies | C++
Effect of an AddHandler
Consider this code: Private Sub LoadMe(sender As Object, e As RoutedEventArgs) Handles Me.Loaded cvsPeople = CType(Resources("cvsPeople"), CollectionViewSource) cvsPeople.Source = ocPeople AddHandler lbxPeople.SelectionChanged, AddressOf…