Unable to obtain configuration from: 'https://login.microsoftonline.com/tenantId/.well-known/openid-configuration'
An unhandled exception has occurred while executing the request. System.InvalidOperationException: IDX20803: Unable to obtain configuration from: 'https://login.microsoftonline.com/<tenanatid>/.well-known/openid-configuration'. Will retry at…
Developer technologies ASP.NET ASP.NET Core
Developer technologies ASP.NET ASP.NET API
Microsoft Security Microsoft Entra Microsoft Entra ID
WPF Bitmapimage resizing is messed up in windows 11 24H2
There is a WPF ImageControl that takes local file as source. Before saving it on server, I am trying to resize the image so that I dont store huge files. I am also trying to reduce the image quality if image size exceeds 12 kb even after resizing. But in…
Developer technologies Windows Presentation Foundation
Windows for business Windows Client for IT Pros User experience Other
Visual Studio: 'Value cannot be null. Parameter name: obj' when opening or building a .vcproj project
I'm trying to build a legacy project (dbgen) from the TPC-H tools suite using Visual Studio 2022 from my assignmentInstallation guide from my assignment, but I keep running into an error: "Value cannot be null. Parameter name: obj". error…
Developer technologies C++
Bluetooth Plugin.Ble NullReferenceException when using IAdapter adapter in new methods
I am using the Plugin.BLE in a .NET MAUI project to manage BLE connections. However, I'm encountering a problem when trying to use the adapter in new methods of my BLELoginServiceAndroid class. The issue is that I'm getting a NullReferenceException when…
Developer technologies .NET .NET MAUI
How to install Visual Studio 2022 for x-64 architecture on a-r-m-64 device?
I need to install VS2022 for Office extension development, so the A-r-m-64 version of VS2022 does not fit my needs. What should I do so that I can install VS2022 for x-64 architecture? Thank you very much.
Developer technologies Visual Studio Setup
Cannot start visual studio due to an error. Microsoft.ServiceHub.Client.ControllerConnectionException: Controller terminated before accepting condition. Exit code: -532462766
Upon opening Visual Studio Professional 2022, the following error appears: Cannot start visual studio due to an error. Microsoft.ServiceHub.Client.ControllerConnectionException: Controller terminated before accepting condition. Exit code:…
Developer technologies C++
Developer technologies Visual Studio Other
Function App gives error after enabling the Entra Authentication for App Insights
Currently we are sending telemetry data from our .Net function app to Application Insights using connection string. But we need to move away from using connection string as it might be a security concern. Hence we wanted to use Managed Identity for the…
Azure Monitor
Azure Functions
Azure App Service
Microsoft Security Microsoft Entra Microsoft Entra ID
Developer technologies C#
How to Move focus between Entry fields in .NET MAUI
How can I move the focus back to the previous Entry in .NET MAUI when the current Entry is empty instead of moving forward? my cursor only goes forward, but I would like it to go back when I delete the entry text.
Developer technologies .NET .NET MAUI
Correct SQL query to not repit articles
Hello, good afternoon, I have the following query in SQL and it is returning duplicate items. I managed to decipher that the items that are duplicated in the "On Orders" column in one row appear with one quantity and in the next row (Same item,…
SQL Server SQL Server Transact-SQL
Developer technologies Transact-SQL
SQL Server Other
How Do I disable the source Server Code preview when debugging
This has been a problem for me since I updated Visual studios. For reference I am Currently on Visual Studios Professional 2022 17.11.5 With recent updates, it appears that Microsoft has introduced a new feature that opens a code editor with previously…
Developer technologies Visual Studio Debugging
Developer technologies Visual Studio Other
How can I access microphone in Maui WebView app for Windows platform?
Whenever we click on Microphone, it is not working in .Net MAUI WebView, there is no action when we click the microphone symbol but same functionality of Microphone is working in WPF WebView2. How can we achieve this Microphone functionality in .Net…
Developer technologies .NET .NET MAUI
MFC class CTreeView is not receiving selection change event when clicking in navigation pane
The new project wizard can create an MFC project that behaves like the Windows File Explorer. The navigation pane that allows the user to navigate through the file system is based on an MFC class called CTreeView which hosts a CTreeCtrl. The class wizard…
Developer technologies C++
"The ordinal 345 not found in the DLL" error
I am facing an issue with a Visual Studio solution that contains a development project and a newly added unit test project to test this development project. The unit test project compiles without any issues, but when I run it, I get the following error…
Developer technologies Visual Studio Debugging
Developer technologies Visual Studio Testing

Debugging in MFC code
I have the following code: CDBVariant var; std::unique_ptr<CRecordset> recordset = ... initialized recordset->GetFieldValue(i, var); And I got an error: I want to explore what is happen in CRecordset::GetFieldValue method, using debugging step…
Developer technologies C++
.NET Maui Min Max Hide Not Showing
I'm not seeing my Min, Max and Hide buttons when my screen is maxed. I have set the following window.ExtendsContentIntoTitleBar = true; Here is the code I'm using . builder.ConfigureLifecycleEvents(events => { #if WINDOWS …
Developer technologies .NET .NET MAUI
401 Unauthorized in Azure DevOps even though user has been added to Organisation
I have added a user to the DevOps organisation But when they try to login, they are shown a 401 unauthorized message The e-mail adres behind the red bars is the same in both images. Some context: User had two Microsoft accounts (personal and…
Developer technologies Visual Studio Other
Erro o SDK 'Microsoft.NET.Sdk.Web' especificado não pôde ser encontrado.
Eu não sei o que exatamente está acontecendo porém quando eu tento rodar essa aplicação no linux, vai tranquilamente, mas quando eu tento usar o visual studio no windows eu recebo esse erro: Erro o SDK 'Microsoft.NET.Sdk.Web' especificado não pôde ser…
Developer technologies .NET Other
Developer technologies Visual Studio Other
Visual Studio defaults to Git Source Control on opening TFS Solution
I have multiple solutions stored both in TFS and Git. When I launch the VS as an Administrator, "Start Window" is shown. Then, I select a TFS solution. The VS opens, loads all projects under the TFS solution and when loaded, it automatically…
Developer technologies Visual Studio Other
vs2022 generator
https://github.com/chromiumembedded/cef-project?tab=readme-ov-file#using-cmake windows 11 and vs2022 my vs2022 default setting is x64-Debug with Ninja 1> [CMake] CEF_PLATFORM windows64 1> [CMake] CMAKE_CXX_COMPILER_ARCHITECTURE_ID …
Developer technologies Visual Studio Other
Handling the Back Button in a .NET Android MAUI App
I am in the process of converting my Xamarin.Android apps to .NET Android MAUI (NOTE: My MAUI app is Android only). In my Xamarin.Android apps, I used AndroidX.AppCompat.App.AppCompatActivity, but would like to use Android.App.Activity in the future…