Content
How can I get the Material You design in my Maui app on Android?
When running my app on android, the controls are of Material design 2, while the latest is 3 - Material You. Can I in some way update the android part of the project to support the latest design?
In Blazor MAUI with a shared UI library, navigation doesn't work
In a shared blazor library, login page and sample page are defined. Here is the Minimum Reproducible Example: https://github.com/johnmangam/ShellNavigation/ Login.razor @page "/login" @inject NavigationManager navigationManager <button…

duplicate request method names in .net proxy class + BizTalk
we have XSD published as service in BizTalk, the end point is getting called by .net technology . When .net team try to consume the service using add service reference it creates the service.cs class library which has all the classes and methods for the…

.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…

How to display autocomplete result id on first line and name on second line and designation to third line instead of using slash ?
I work on asp.net MVC web API . I face issue when call web API using jQuery ajax request my issue is autocomplete result display separated by slash Id - Name - Designation but expected result I need to get is : Id : 121 Name : michel nicol Designation :…

How to create an undetermined amount of grid columns?
Source thread: How to create an undertermined amount of grid columns?, answered by Peter Fleischer. I have a text property bound to a TextBox. For each letter in the TextBox, I want to create a gird cell with a TextBlock inside it. So if I have a six…
ASP.NET CORE WEBAPI JWT
This api https://visitsapi.azurewebsites.net/api/Visits https://github.com/KalyanAllam/VisitsApi is called in the controller Visitsnew of https://github.com/KalyanAllam/PatientPortal Now I want to make the api…

How to include native GTK libraries in single-file dotnet executable?
I am trying to bundle a GT3 application into a single file dotnet executable. A minimal not working example is this: mkdir x cd x dotnet new gtkapp dotnet build dotnet publish -r win-x64 -c Release -p:PublishSingleFile=true…

Android issue when compiling for 'deploy'
When compiling for deploy I get error (full log attached): "C:\Program Files (x86)\Android\android-sdk\platform-tools\adb" -s emulator-5554 uninstall -k "com.companyname.randoPro" The -k option uninstalls the application while…

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…
Output to Blazor backend from Azure deployed AI model
Hi, We need to get the output of an AI model that runs as a managed endpoint in Azure to our Blazor backend. What is the best way to do that? Is there a way to send the output from the AI model to the Blazor backend once it is ready? If yes, how exactly…

Avoid repeatation of code
Hi , i have a project with 4 windows forms all of doing everything separate work . but they all a common thing in them . protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == (Keys.F2)) …
How to create HTTP Error Handling for the PUT method?
Hi, I would like to know how create HTTP Error Handling for the PUT method and rendering the information to user in UI. I guess that it's also possible to make GLobal HTTP Error Handling for all methods! I've created the put method which, when two users…
How can I create a Complex View Like this one in WPF DataGridView C#?
I created this Example and Tried to make it as Simple as Possible so that you can Understand Clearly. I have SQL Server Database Named EmployeesDB that contains 4 Tables as following: 1. Employees Table which is the Parent Table in this Example. 2.…
VS 2022 .net6 core C#. Application.StartupPath is different at run time.
Hi, I am trying to capture my project home directory: string exeFolder = Application.StartupPath; While i test app i am getting path with MyPath"bin\Debug\net6.0-windows". in result i cannot access my report folder with reports. Is there a…
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,…

How to get error message or success after call action function using jquery ajax ?
I work on asp.net MVC application . I face issue I can't display error message or success message when call action RequesterIndex controller Resignation . calling API using ajax request working success only need to display error message or success…
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…
Remove the index.html from url asp .net react IIS
I have an asp.net core and react project and I publish it to the IIS server. But after deploying it, it showed 'page can't be found' error. And when I added /index.html to the url (www.mywebsite.com/index.html), it showed my website and it seemed to be…
WPF 3D to 2D projection appears wrong?
Have a case where a point on the PerspectiveCamera’s LookDirection vector does not project to the center of the Viewport3D. Any thoughts as to why? Here are details of the case (all the values are rounded for brevity): The Viewport3D is 778, 405. Any…