Content
Runtime Error 424 when the module was running fine before.
Sub Report() Worksheets("Report").Activate Cells(41, 14).Select Dim baris, kira As Integer Dim Nama, ProperPath, Namafail As String baris = 41 kira = Cells(40, 17).Value Do While baris < kira + 41 Nama = Cells(baris,…
calling REST API
I am trying to call a REST API on my local host for testing purposes. This is what I have in my controller: public class SMSController : ControllerBase { private readonly IWebHostEnvironment _webHostEnvironment; public readonly…
ComboBox Appears Black in Windows 10 Using .NET Framework 4.8
Hello, I'm currently facing an issue with a ComboBox in a Windows application I developed using .NET Framework 4.8 on Windows 10. The ComboBox is appearing black, making it difficult to see which item is selected. However, when I click on it, it…
Recommendation for Blazor Server use for an application
I would like to know if Blazor Server would be recommended as the way to go for an application that does the following Needs to run on any device able to run .NET apps (i.e. Raspberry PI etc.) Needs to access IOT devices (JSON strings received or sent…
How to run AI model in a Blazor frontend
Hi, What is the best way to run a AI model (programmed in Python) that has been deployed in Azure as a managed endpoint in the Blazor frontend of each user of a Blazor website? Is there a way to run the AI model in the Blazor frontend in a simple and…
system.drawing.icon from System.Windows.Shapes.Path
<Path x:Key="Icon.Path.ExpandAll" Style="{StaticResource Style.Path.Icon.Base}" StrokeThickness="0.2" Data="M19,19V5H5V19H19M19,3A2,2 0 0,1 21,5V19A2,2 0 0,1 19,21H5A2,2 0 0,1 3,19V5C3,3.89 3.9,3…
issue in opacity of the parent form and panel
Hi , my other problem is there is a scenario in which i have a form named child which is opened inside a panel of a form named father . what i am trying is when i press F2 on my keyboard a new form opens asking for current date . at this moment i want…
Is there some way to get VS 2022 to stop closing my Maui app with no reason/no error in VS?
The last few days I am getting VS closing my app in the Android emulator for no apparent reason. If I plug in my phone and do testing from there I don't get the problem. I have gone thru the horrible process of trying to re-init the emulator but it…
.net maui fully custom splash screen
I am working on . net maui splash screen but there are android 12 and later issues. So I can not set splash screen like make image like previous android versions. But I want and set it image that has contents on all screen. I have seen many splash…
InvalidProgramException in Windows Forms application
Hello, I'm a developer of the desktop .NET Windows Forms application. I faced a strange exception thrown by .NET runtime on a single production PC. On a component initialization phase .NET throws the following: System.InvalidProgramException: Common…
How to Optimize Performance of Real-Time SignalR Applications in .NET Core?
I am developing a real-time application using SignalR in .NET Core and seeking advice on optimizing its performance for handling a large number of concurrent connections. What are the strategies and best practices for optimizing real-time SignalR…
Best Practices for Asynchronous Programming in .NET?
I am working with asynchronous programming in .NET and looking for best practices and patterns to write clean, efficient, and scalable asynchronous code. Can anyone share their experiences, tips, or resources on this topic?

WPF custom animation thread
Hello, I have a small simple WPF application (I am learing by doing). I made some custom drawing on a Canvas declared in XAML, by using code in the corresponding C# file. Now I want to access the canvas from another thread to be able to apply geometric…
How to Implement Real-Time Data Syncing in a .NET MAUI Application?
I am developing a .NET MAUI application where I need to sync data in real-time between multiple clients and a server. I am looking for guidance on the best practices and efficient ways to implement real-time data syncing in a .NET MAUI application,…
How to Efficiently Manage State in a .NET Blazor Application?
I am working on a .NET Blazor application and am exploring different approaches to managing state efficiently across components. I am considering using a state container like Flux or Redux but am open to other recommendations. Can anyone provide…
How to Optimize Performance in a .NET MAUI Blazor Application?
I am developing a cross-platform application using .NET MAUI Blazor and have noticed some performance issues, particularly when loading data and rendering components. Can anyone provide guidance, best practices, or resources on optimizing performance in…
How to Implement Authentication and Authorization in a Blazor WebAssembly App?
I am developing a Blazor WebAssembly application and need to implement user authentication and authorization. I am considering using IdentityServer4 for this purpose. Can anyone provide guidance or recommend best practices for implementing secure…
How to Integrate Azure Services with a .NET MAUI Application?
I am developing a cross-platform application using .NET MAUI and am looking to integrate various Azure services such as Azure Functions, Azure Logic Apps, and Azure Blob Storage. I am seeking guidance and best practices on integrating these services…
How to Securely Handle User Sessions and Cookies in ASP.NET Core?
I am developing a web application using ASP.NET Core and need to manage user sessions and cookies securely. Can anyone provide recommendations or best practices for securely handling user sessions and cookies in ASP.NET Core?

Strategies for Implementing CI/CD Pipelines in .NET Projects?
I am looking to set up Continuous Integration and Continuous Deployment (CI/CD) pipelines for my .NET projects. What are the recommended tools, strategies, and best practices for implementing CI/CD in .NET development?
