54,971 questions with Developer technologies-related tags

Sort by: Updated
0 answers

MAUI: Issue with FlowDirection

My home page is a FlyoutPage and its FlowDirection is RightToLeft, because I need to open the flyout(menu pop up) from the right side. The detail page is TabbedPage with 3 children. The first child is an AlertsPage and if we click on any alert it will…

Developer technologies | .NET | .NET MAUI
asked 2025-11-28T07:58:55.85+00:00
Sreenivasan, Sreejith 270 Reputation points
commented 2025-12-05T08:29:19.1466667+00:00
Sreenivasan, Sreejith 270 Reputation points
2 answers

Blazor WebAssembly no soporta AES (System.Security.Cryptography) → obliga a usar librerías externas

Actualmente, en Blazor WebAssembly, el uso de System.Security.Cryptography.Aes falla con el error: Algorithm 'Aes' is not supported on this platform. Esto ocurre incluso con configuraciones básicas como: using (Aes aesAlg = Aes.Create()) {     aesAlg.Key…

Developer technologies | .NET | Blazor
Developer technologies | .NET | Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML, developed by Microsoft.
1,690 questions
asked 2025-12-04T20:01:00.27+00:00
Alberto Reyes Peralta 0 Reputation points
answered 2025-12-05T08:23:01.0633333+00:00
Danny Nguyen (WICLOUD CORPORATION) 4,985 Reputation points Microsoft External Staff Moderator
1 answer

[[likely]] attribute not working with MSVC

C++20 has introduced the [[likely]] attribute, I wanted to see the difference is the assembly and wrote a simple code: int If (bool pFlag) { if (pFlag) return 3214; else return 19862; } int IfLikely (bool pFlag) { if (pFlag)…

Developer technologies | C++
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.
4,027 questions
asked 2025-12-05T07:42:03.6466667+00:00
Smit Himanshu Shah 46 Reputation points
edited a comment 2025-12-05T08:22:37.04+00:00
Viorel 125.6K Reputation points
2 answers

iOS: Loading Overlay Sometimes Fails to Dismiss After Async Operation

I have a method in my .NET MAUI app that triggers a loading overlay with a spinning sync icon whenever it runs. When execution reaches the finally block, the overlay and icon should be removed. This works consistently on the Windows emulator, but on iOS…

Developer technologies | .NET | .NET MAUI
asked 2025-12-04T15:35:09.68+00:00
Connor Patchett 0 Reputation points
answered 2025-12-05T07:58:24.4433333+00:00
Michael Le (WICLOUD CORPORATION) 5,765 Reputation points Microsoft External Staff Moderator
2 answers

Need Power BI + Excel sandbox access in Microsoft 365 Developer Program

Note: None of the available sub‑tags match my issue. This is about the Microsoft 365 Developer Program sandbox access for Power BI and Excel. Hi, I joined the Microsoft 365 Developer Program to build a reporting prototype using Power BI and Excel.…

Developer technologies | Visual Basic for Applications
asked 2025-12-05T06:52:00.1133333+00:00
Dharshini D 0 Reputation points
commented 2025-12-05T07:55:32.9233333+00:00
Dharshini D 0 Reputation points
1 answer

Issue to the line

Hi, I got the exception like Exception/StackTrace - Index and length must refer to a location within the string. how to locate to the place causing the issue.

Developer technologies | C#
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.
11,693 questions
asked 2025-12-05T03:44:34.95+00:00
Peter_1985 2,826 Reputation points
commented 2025-12-05T07:53:28.5933333+00:00
Viorel 125.6K Reputation points
1 answer

facing issue while using Azure's Face livensss API , not getting desired response in JSON also unable to integrate this api in existing web application created in c# .net

We have referred below link for referral for using rest api created by azure for face liveness detection https://learn.microsoft.com/en-us/azure/ai-services/computer-vision/tutorials/liveness?tabs=cmd%2Cweb-javascript but not getting response as shown in…

Developer technologies | ASP.NET | Other
Developer technologies | ASP.NET | Other
A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
3,627 questions
asked 2025-12-05T07:29:22.0766667+00:00
CDSL VENTURES 0 Reputation points
answered 2025-12-05T07:29:51.4733333+00:00
Q&A Assist
2 answers

Build and run Maui app from dotnet cli on mac

I have dotnet 10 installed on my mac. Running dotnet --version yields this: 10.0.100-rc.1.25451.107 I have also installed the sdk, but when I run dotnet build -t:Run -f net10.0-ios I get this error: MyMauiApp net10.0-ios failed with 1 error(s) (0.2s) …

Developer technologies | .NET | .NET MAUI
asked 2025-09-29T18:42:08.6366667+00:00
Brad Rice 20 Reputation points
edited an answer 2025-12-05T07:22:55.7766667+00:00
Michael Le (WICLOUD CORPORATION) 5,765 Reputation points Microsoft External Staff Moderator
3 answers

Custom debug engines in Visual Studio 2022?

What's the currently accepted way to create a custom debug engine for Visual Studio 2022 or 2026? I've found a tutorial for "Building a Debug Engine Using ATL COM", but it's clearly for an older version of Visual Studio (perhaps 2013). VS 2022…

Developer technologies | Visual Studio | Debugging
asked 2025-12-03T20:24:04.8866667+00:00
Bob 0 Reputation points
commented 2025-12-05T07:10:50.51+00:00
Susmitha T (INFOSYS LIMITED) 1,630 Reputation points Microsoft External Staff
2 answers

Provisioning Msix apps abruptly pauses without error

While trying to provision a higher version of a MSIX app through a MDM solution, we’re seeing a case where the provisioning process abruptly pauses/stops with no explicit error. The last messages in the AppXDeployment-Server logs are: “Deployment…

Developer technologies | Universal Windows Platform (UWP)
asked 2025-11-26T09:41:59.9366667+00:00
Bivin Benny 0 Reputation points
answered 2025-12-05T07:05:56.68+00:00
Bivin Benny 0 Reputation points
2 answers

Language Server restarts only once in case of failure in Visual Studio

I am working on an extension that has a Language Server (LSP) implemented. I am trying to load the language server again in case of failure calling - ILanguageClientBroker.LoadAsync This works fine once, Language Server is loaded again once. But again…

Developer technologies | Visual Studio | Extensions
asked 2025-11-27T18:05:16.9433333+00:00
Sajith 66 Reputation points
commented 2025-12-05T07:02:46.73+00:00
Surya Amrutha Vaishnavi Lanka (INFOSYS LIMITED) 1,115 Reputation points Microsoft External Staff
0 answers

Converting Existing ASP.NET Core Web Application to a Local Desktop Application?

Hello everyone, I currently have a working ASP.NET Core (.NET 8) web application. My goal is to preserve the application's existing HTML/CSS/JavaScript interface and C# business logic (DI, Services, EF Core, etc.) while transforming it into an…

Developer technologies | .NET | Blazor
Developer technologies | .NET | Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML, developed by Microsoft.
1,690 questions
asked 2025-12-05T06:43:54.2266667+00:00
fatih uyanık 245 Reputation points
2 answers

debug C++ project with cuda kernel using Nsight

Trying to configure VS 2022 community to integrate with Nvidia tools including NSight debug and compiling .cu source files. This is new install of VS 2022C and then new install of Nvidia GPU tools version v12.6. when i enter VS 2022 no signs of GPU…

Developer technologies | C++
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.
4,027 questions
asked 2025-11-29T22:06:29.1166667+00:00
JAMES MORGENSTERN 176 Reputation points
commented 2025-12-05T06:22:48.8966667+00:00
Surya Amrutha Vaishnavi Lanka (INFOSYS LIMITED) 1,115 Reputation points Microsoft External Staff
2 answers

SharePoint solutions can't be build with buildtool v18 because of an SDK version error.

SharePoint solutions can't be build because of an SDK version error. C:\Program Files\Microsoft Visual Studio\18\Professional\MSBuild\Microsoft\VisualStudio\v18.0\SharePointTools\Microsoft.VisualStudio.SharePoint.targets(235,5): error : Could not load…

Developer technologies | Visual Studio | Debugging
asked 2025-11-28T11:41:24.91+00:00
Michael Kriese 106 Reputation points
commented 2025-12-05T06:21:39.6966667+00:00
Surya Amrutha Vaishnavi Lanka (INFOSYS LIMITED) 1,115 Reputation points Microsoft External Staff
1 answer

MongoDB.Driver.MongoIncompatibleDriverException:

MongoDB.Driver.MongoIncompatibleDriverException using C# mongodb driver

Developer technologies | C#
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.
11,693 questions
asked 2025-12-02T20:59:38.6233333+00:00
Nagireddi, Vijaya (US - Texas) 0 Reputation points
commented 2025-12-05T06:20:43.3533333+00:00
Surya Amrutha Vaishnavi Lanka (INFOSYS LIMITED) 1,115 Reputation points Microsoft External Staff
2 answers

failed load hostfxr.dll at .net9 self-container app on win10,win7

i write a client app with .net9 vs2026, and publish with self-container. but it can't be run when i double-click on (win10,win7) part of my client machine. i look eventlog and get this. how to reslove this? i got a information for win7, install a…

Developer technologies | .NET | .NET Runtime
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.
1,298 questions
asked 2025-12-02T03:03:59.5266667+00:00
SIR WANG 0 Reputation points
commented 2025-12-05T06:18:44.12+00:00
Surya Amrutha Vaishnavi Lanka (INFOSYS LIMITED) 1,115 Reputation points Microsoft External Staff
2 answers

collegare il modulo termometro netatmo a cellulare iphone

come collegare il modulo termometro netatmo al pc o al cellulare iphone

Developer technologies | Visual Studio | Other
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.
5,574 questions
asked 2025-12-05T06:14:20.1566667+00:00
ikshdr 0 Reputation points
answered 2025-12-05T06:18:29.8733333+00:00
ikshdr 0 Reputation points
1 answer

Visual Studio 2022: “Constructor on type 'DocumentWizardInitializer' not found” when editing SSIS Package Configurations

I am unable to edit SSIS Package Configurations in Visual Studio 2022. Whenever I open SSIS → Package Configurations Organizer → Edit, Visual Studio throws an error and the configuration editor does not open. The same SSIS project and the same XML…

Developer technologies | Visual Studio | Extensions
asked 2025-12-01T18:19:02.2733333+00:00
Naresh Pulluri 0 Reputation points
commented 2025-12-05T06:17:13.5+00:00
Surya Amrutha Vaishnavi Lanka (INFOSYS LIMITED) 1,115 Reputation points Microsoft External Staff
1 answer

List all the possibilities of converting DWG (AutoCAD) to different formats

Hi, 1.Can you please list all the possibilities of converting DWG (AutoCAD) to different formats ? And what is the aim of each target format? Thanks in advance,

Developer technologies | C#
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.
11,693 questions
asked 2025-12-05T05:29:18.7566667+00:00
Dani_S 4,771 Reputation points
commented 2025-12-05T05:41:55.17+00:00
Dani_S 4,771 Reputation points
1 answer

How to automatically redirect to next page after progress bar finish loading

How can I create a progress bar that will be loading, and after it finishes loading, it will automatically redirect to next page after 10 seconds? Here is what I tried, although what I've been able to get is a button such that when the button is clicked,…

Developer technologies | C#
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.
11,693 questions
asked 2025-12-03T18:17:55.22+00:00
Donald Symmons 3,066 Reputation points
edited a comment 2025-12-05T05:31:26.16+00:00
Donald Symmons 3,066 Reputation points