Content
how to get live stream which push by obs?
I want to get live stream that obs(obsproject.com) push. how to get the live video stream and send it to users? do not use azure.
push notifications in Windows
Hi, I'm developing an application in MAUI, and I'm working with push notifications in Windows, what is the normal behavior of push notifications when the application is closed (not minimized)? When the app is open the notifications arrive and everything…
Maui .net. RelayCommand when pressing button doesn't fire.
I have VS 2022 preview Version 17.5.0 Preview 1.0 In my project I installed CommuniToolkit.Maui v2.0 and CommunityToolkit.Mvvm V8.0 I created this MVVM test app and when I press the button it doesn't fire. <ContentPage…
CaptchaMvc.Mvc5 Captcha loading error
Hi, We are facing the captcha loading error if user browse the URL multiple times. here we are using CaptchaMvc.Mvc5 package. Note this issue is not showing in localhost. Please find the image for your reference.
C# Allowing only one row to be selected in checkbox coloum in each datagridview on a form
Hi I'm still very new to C# and struggling with the following issue with DataGridViews in my windows forms app. I have a form that has two combo boxes (combo1 & combo2) and two datagridview (dgv1 & dgv2) controls on it. Both combo boxes have a…
EF Core .Net 8 error after TLS 1.0 was disabled.
The admins where I work have disabled TLS 1.0 but now all of a sudden, my .Net 8 app is getting the following error: Microsoft.Data.SqlClient.SqlException (0x80131904): A connection was successfully established with the server, but then an error occurred…
How to convert node.js to C# code
I have this code in node.js and I need to convert it to C# code This method I have to implement it in my project to be consume from other platform. But it is coded in Node.js and I am using ASP.NET MVC and I do not have idea in node.js…
Maui - publish msix with no internet in net 8
Hi, When publishing msix with internet the msix is working. But with no internet is not responsive at all . not open . Why ? dotnet publish -f net8.0-windows10.0.19041.0 -c Release /p:AppxPackageSigningEnabled=true…
Memory is not releasing in dotnet6
I'm currently working on a .NET 6 Web API project, and I'm facing an issue with memory not being released properly. I have thoroughly analyzed the code and ensured that I'm not creating any memory leaks or holding onto unnecessary resources. However,…
Why does Visual Studio create a solution not allow selecting .NET 8?
Hi; I'm trying to create a new Blazor Server app and want it to be .NET 8 so I get the ASP.NET Identity library version 8 in the created code (to see what has changed). Is there any way to do this? The dialog only allows.NET 6 and .NET 7. I do have .NET…


ComponentPro with MAUI not work when running as exe
Hi, I moved to Net 8 and publish my app as exe. I used https://www.componentpro.com/ => components dlls The dlls work in VS but not work when i run them as exe ? Why? Thanks,
Does ASP.NET Core Identity library have an option for CAPTCHA?
Hi; In the ASP.NET Core Identity library, is there a way to have it require a CAPTCHA when a new user is registering? thanks - dave


How to fill a Form.RTF with a Controls.RTF
I need to fill a document RTF (System.Windows.Forms.RichtextBox) from a Richtextbox (System.Windows.Control.RichTextbox). This because for printing. Actually I've done a class for printing RTF (Forms) with texts and images but I don't know how to print a…
Radio Button and RadioButton.GestureRecognizers are not working
RadioButton.GestureRecognizers are not working with Android. I found a number of forums mentioning that RadioButton.GestureRecognizers is not working with Android. My questions it, is there an alternative? I tried Binding CheckedChanged and that doesn't…
Refresh the DbContext,
private static void RefreshDbContext(DbContext dbContext) { var refreshableObjects = dbContext.ChangeTracker.Entries() .Where(e => e.Entity != null && e.State != EntityState.Detached) …
How the Frame border color set in xamarin forms Android?
Unable to see the Frame Control BorderColor in Xamarin.Forms Android and it is working in Xamarin.Forms UWP . Can anyone please help me Please check the below code snippet for refernce <Frame BackgroundColor="#2196F3"…
Oledb Connection issue 16.0
Erron :-Framework version : v4.0.30319 The process was terminated due to unhandled exception exception info =…
background image and nav bar
i know i'm close on this and got my background image and nav bar to overlay on the top. however when i first get testing this is the look i get: when i resize the window i get the correct look: trying to get the background image to auto size regardless…
Retroactivly scaffolding identity into both my backend and frontend so that it all works
Hello! I've made 3 projects in my solution. one is my Api project, one is my blazor project and one is a class library for my Dtos. Both my backend and frontend reference the class library. I wanna retroactivly scaffold identity into my backend…
Changing Visual state of an Entry inside a collection view
I have a Collection view with entries , based on certain conditions , I will have to change the visual state to either disabled or normal . I have already defined them in styles.xaml. I tried it by binding isEnabled property of Entry but the background…