Infinite loop in SaveCommentOnBlur when Unfocused event is triggered in MAUI
In my custom MAUI entry control, the SaveCommentOnBlur method gets stuck in an infinite loop when the EntryField_Unfocused event is triggered. This causes the keyboard to hang, and either the keyboard or the app becomes unresponsive. Steps to…
No publish option C# console app VS 2022
Following a C# tutorial telling me to use the "Publish Selection" on my code, but in can't find it anywhere. I've tried installing stuff into my VS but it changed nothing. Did I miss something?
How to use WPF Mouse.OverrideCursor in a VB.NET application
I tried a sample WPF code, that Kareninstructor recommended to me, from https://github.com/karenpayneoregon/visual-basic-getting-started/tree/master/ChangeCursor to test the usage of Mouse.OverrideCursor - this worked beautifully. However, it is a…
In Azure Web PubSub, How to receive messages in backend microservice for processing
Requirement: My clients are using simple WebSocket connection to send messages. I want to receive these messages inside my backend .NET 8 web api and process them further to send fine-tuned data to some distributed cache services. From documentation, I…
Invalid dex file indices" Error in Net Maui
Hi, I get the following error when publish Android app. [BT : 1.8.1] error : Invalid dex file indices, expecting file 'classes?.dex' but found 'classes2.dex' Steps: Create a new Maui app Copy keystore file created using Xamarin…
NET MAUI Splash Screen Not Displaying logo.png on Android 14 and 15
I am developing a .NET MAUI application and facing an issue with the splash screen when installing the app on physical devices running Android 14 and 15. The splash screen only displays the purple background, but the logo.png image (with a white…
Java.Lang.ClassNotFoundException Didn't find class "androidx.core.splashscreen.SplashScreen" on path: DexPathList
I get the following error in Activity1.cs in my Android project: protected override void OnCreate(Bundle bundle) { AndroidX.Core.SplashScreen.SplashScreen.InstallSplashScreen(this); Java.Lang.ClassNotFoundException Message=Didn't find class…
The Microsoft.ACE.OLEDB.12.0 provider is not registered on the local machine.
How do I register Microsoft.ACE.OLEDB.12.0 in Visual studio 2022
How to get Json Data from an external WEB API to an JQUery autosearch text box end point
Hi everybody: I have an external minimal Web API that produces a JSON object ( array) as per below. app.MapGet("/AsyncAutocompleteErf/{search}", async (IErvenRepository request, string search) => { var data = await…
In MAUI it will re-open my APP when I quit and open another app
in MAUI Platform IOS: I open my app and open Page1 and then tab the screen to open another APP and then quit that APP then return to my APP the Page1 is disappeared and it is the home page. does it closed and re-open? how to keep the Page1(or other…
Hundred of errors after update to Visual Studio version 17.12.3!
I updated Visual Studio to version 17.12.3 and now, there is hundred of errors in Building project! My .net Core project was work correctly before updating. I checked errors but they are nonsense! All codes are correct.
How do I update DBContext after adding new table to SQL database?
We added a new table to our SQL Server database called Occupation. From the ASP.NET Web Form project, I can not seem to access it. Imports System.Data.Entity Public Class CCDBContext Inherits DbContext Public Sub New() …
How to Use Cube.js API with .NET Core Application? Facing "Query Param is Required" Error
Hello, I am trying to integrate the Cube.js API into my .NET Core application. My goal is to fetch data from Cube.js using a custom query. However, I keep encountering an error and can't seem to get the integration working. Here’s the method I…
How to Use Cube.js API with .NET Core Application? Facing "Query Param is Required" Error
Hello, I am trying to integrate the Cube.js API into my .NET Core application. My goal is to fetch data from Cube.js using a custom query. However, I keep encountering an error and can't seem to get the integration working. Here’s the method I…
Issues with Rotating ProgressBar for Vertical Orientation In WinUI App
Hi, I am working on a custom StepBar control, and the Horizontal orientation is functioning as expected. However, I am encountering issues when implementing the Vertical orientation. Since the ProgressBar control does not have an Orientation property,…
increase the bindings performance
Hello happy new year to everyone I am trying to increase performance on my xaml Since I updated to .Net 9, I got this warning Binding was not compiled because it has an explicitly set Source property and compilation of bindings with Source is not…
Refresh the map
I need some help in refreshing the map, when the internet is back on Since the map doesn't have any refresh, I am using the pages stack to reload the page interface public interface IAppService { Task NavigateToPage(string pageName); …
test return value after executing NavigateToAsync command
The following code works perfectly. but now I want to test the value returned in a global variable. (this is an inventory system with a multi column checklist page that calls and populates the infopagemodel when I tap an item/line , so that I can…
Redis stack trace does not appear in Kubernetes Pod Log! Why not?
I have an ASP.NET core 3 web app I'm trying to debug in an Azure Kubernetes pod. I could look at the kubernetes pod log and see my System.Console.WriteLine statements inside of my ConfigureServices functions and everything looked great -- including my…
Implementing mTLS Between Two Apps Using ASP.NET
Guidance is requested on implementing mTLS between two applications using ASP.NET MVC in C#. or any .net code. The setup will involve a handshake between the server app and client app, developed in a localhost environment, utilizing OpenSSL or another…