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
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
[[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++
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
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
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#
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
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
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
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)
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
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
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++
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
MongoDB.Driver.MongoIncompatibleDriverException:
MongoDB.Driver.MongoIncompatibleDriverException using C# mongodb driver
Developer technologies | C#
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
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
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
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#
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#