Content
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…
Opening the new form and closing the previous
Hi , In my project i am stuck at a point and can not figure out how to open a new form inside a panel of already opened form . So there is a form named father and it has a panel . i am using this panel to open all subsequent forms (children) . there are…
permanent footer row in datagridview
hi , is there a way by which our datagridview control could have a footer row below exactly after the 12 rows and if the rows in the datagridview increases , suppose by 2 . it should always be at last position but it always should be after 12 rows . the…
ASP.NET CORE WEBAPI Bearer Token
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…
.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…
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…

MAUI extensions not available on visual studio 2022
I have Visual Studio v 17.7.4 and Visual Studio Preview v 17.8.0 and have recently installed the MAUI suite.  I am not given the option to create multi-platform apps as I assume I would on VS or VSP. I have gone through previous iterations of the…
Visual Studio 2022 Xamarin iOS Cannot Automatically Restart App After Build
I use Microsoft Visual Studio Enterprise 2022 (64-bit) - Current Version 17.6.4. I have created a new blank project and connected it with iMac 2012 Catalina xCode 12.4 and Mac Book Pro 2018 Ventura xCode 14.3.1. Everytime I Build the app, at the first…


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…

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