Content
Execute msix with administrator privileges and run script
I am developing a Windows application with .NET MAUI and I am building the msix with Visual Studio, as stated in the .NET MAUI documentation: https://learn.microsoft.com/en-us/dotnet/maui/windows/deployment/publish-visual-studio-folder I don't know if it…

Issue with link generating in Azure for Digital Twin
I have issue with Deployments details and also there is a message while generating code that bicep is set to false. Please find the IMG below. If anyone could help me that would be really appreciated. Thank you.
Determine "Recommended" display resolution settings
Got the code that gets a list of the monitors (using EnumDisplayDevices) along with getting all the settings (using EnumDisplaySettings) for each monitor working just fine. However, when I right click my desktop and adjust the resolution one of the…

staticwebapp.config.json is being ignored
I'm hosting a blazor wasm app in azure static web apps but my staticwebapp.config.json is being ignored. I've tried placing it in the root folder and /wwwroot. I'm deploying through visual studio This is the contents of the json file: { …

dotnet blazor maui UAE PASS authentication unable to redirect to the mobile app after authentication is done
I'm Developing the app with UAE pass authentication using Maui Blazor technology(C#). successfully obtained the authorization code from UAE Pass but i am facing difficulties redirecting back to mobile app. Please find the attached file. I have…
Emulator error in Visual studio 2022
Hi Team, I am trying to run a Xamarin application using Visual Studio 2022 community. From Android device Manager, I have created an emulator with below configuration - Processor - X86_64 OS - Android 13.0 - API 33 While running it getting below error…

Push notification on MAUI application using FCM
I am trying to implement push notification on my MAUI application using FCM. I follow this blog and I did everything as per the blog. They suggest to install only 2 NuGet packages, Plugin.Firebase and Plugin.Firebase.Crashlytics. (I installed it by…
"Failed to get document because the client is offline" error in Xamarin.Forms project
Here is my code of App.xaml.cs file of a Xamarin.Forms project: public partial class App : Application { public App() { CrossFirebaseCrashlytics.Current.HandleUncaughtException(); InitializeComponent(); …
Event ID 1309 ASP.NET 4.0.30319.0 Warning
I put the whole error below, but before I continue there's a phrase in this error people are going to focus on and it's NOT the problem. There is no trust relationship problem with the server. What I don't doubt is at issue is communication to the…

Error when try read data from Excel File in ASP.NET MVC
In an ASP.NET MVC app, I am trying to read data from Excel file but I get this error: The error appears in production mode, but in development mode there's no problem. I am making host on Local Host on my computer Microsoft Excel cannot access the file…

How rendering handling concurrency in razor page from API response?
Hi, I'm following up on all the discussions I've had about handling concurrency errors. 1 - I would like to know if it is possible to handle concurrency errors in a context where I have a DataGrid in edition mode on a line? 2 - I have defined a put…
ShellItemRenderer.java - Error when building Android Solution
Hi When building the solution (tried both Xamarin forms 4.8 and 5) i keep getting the folllowing errors. I have deleted bin and obj directories but the issue continues Error error: ShellItemRenderer is not abstract and does not override abstract…
Azure Cognitive Search - Spell Checker Implementation in C#
I am looking for implementing spell checker for the azure cognitive search in C#. For now I have reviewed the spell checker link from the official Microsoft documentation: https://learn.microsoft.com/en-us/azure/search/speller-how-to-add But there's no…

How do I get the FreeTextTable.Rank via Entity Framework
Hi all; I'm able to get a list of records using FreeTextTable in Entity Framework as follows: var EventsSqlWhere = $"SELECT top 200 * FROM FreeTextTable(Events, *, {0}, 200) as t INNER JOIN Events u on u.Id = t.[KEY] ORDER BY t.[RANK]…

Upload a file on one drive using microsoft graph api in c# asp.net
Hello, I have one question,I want to upload a file on one drive and it is worked properly in console application but not in web application. Please help me here below is my sample console application…
How to Fix unhandled exception in windows when closing a secondary window using the close button in the title bar
When Multiple windows are opened using Application.Current.OpenWindow() Closing a window (not the primary application window) using the close button in the title bar (specially when the window is not in the foreground) raises an unhandled…
Sending email function is not sending email
Hi, My send email function is not working on my emulator or on the mobile from the app store. Am I missing something? Like some permissions etc? private async void SendFeedbackEmail() { try { var…
Reducing opacity of swipe images
How do I reduce the opacity of images in a swiper container, except for the image that is swiped to display in the middle? For example, as the images are swiping through, any image that appear in the middle will be clear while the other ones beside will…
HttpListener used on Xamarin.IOS app. "Safari cant open the page because it couldn't connect to the server" error only on iOS 17 devices.
Our project uses the latest Xamarin and our app has a function that creates a HTTP server to store a html and config file, and we use SfSafariViewController to view the contents on the html file. However, after the release of iOS17, this function does…
Maui android screen keyboard for entry when keyboard is showing
Hello all. I use entry handler to prevent keyboard pop when the entry has focused and it works ok but if the keyboard is already showing and I tap the entry field the keyboard still showing and I need to manually hide it. How I can fix that…