csharp

  1. Semih

    getting the path of the output file

    Hi, I need to code a program that will archive every file output on a C# printer, but I couldn't find any library or resource that allows to get the path of the output file. How can I do that? For example, when a Word file is printed, the program will take the file path and make a copy of the...
  2. T

    Blazor MAUI blank screen on iOS

    I have a Blazor Hybrid MAUI App that works great on Android. However, when I compile my code (both from VS and from dotnet publish in Azure Pipeline) to iOS the app just shows my splash screen and then shows a blank white screen (both on Simulator and on physical iPhone) and nothing more...
  3. Edwin Klesman

    Tip A list of AI powered tools for C# Developers. What do you think?

    Hi all, Since ChatGPT kicked everyone into an AI era of asorts, I thought it would be fun to sum out some tools that are around to either: - make a developer more productive by speeding up repetitive tasks - act as a second pair of eyes - helps us by logically append our minds objectively...
  4. ahmedaziz

    Issue threading when run login identity on blazor server ?

    I working on blazor server . i get issue evaluation function required all threads to run i get this error when login on var resultIdentity = await signInManager.PasswordSignInAsync(UserName, "xxxxx", false, false) it stop on this line and hang and stuck on debugging so what is issue and how...
  5. ahmedaziz

    Question How to modify action details to get data from another model ?

    I work on EF core 7 blazor . I face issue I can't call Details model from application page to get all Data for details model . meaning I need to display details data as list on application page where Header Id = 1 on action GetAllDetails. so when call Application/GetAllDetails I will get all...
  6. E

    Resolved the current .net sdk does not support the targeting .net 6.0

    Hello all, woke up this morning booted up my pc and got this error the current .net sdk does not support the targeting .net 6.0 i not made any changes to sdk it has taken me to this line of code, Trigger an error if targeting a higher version of .NET Core or .NET Standard than is...
  7. R

    Question Bulk Insert Problem - inserting excel data

    Hi there, In my Blazor Server application, I am trying to insert excel data into a SQL database table. I am getting this error, but couldn't figure out why. Here is the sample excel, I am trying to bulk insert. Here is the table; CREATE TABLE [dbo].[RazerReconciliation]( [PID]...
  8. SiamIT

    Question How To DEALLOCATE PREPARE Statement Using Mysql.Data Client?

    Greetings.. hope you guys are fine? OK.. i am using MySQL.Data client/library to access and use MySQL database. I was using happily it for sometimes on quite a few project. But suddenly facing a new issue that causing me hold on my current project. :( Because current project makes some (looks...
  9. SiamIT

    Resolved Fix 7zip.dll integration in C#

    i was trying/finding for a solution that i can use unzip/extract 7zip file natively in c#.. till now i was trying 7zdec.exe (console) application that i can invoke using process command. but it's not that user friendly as i need to track the progress properly on front end (my app/form/window)...
  10. SiamIT

    Question Showing Console Output On Label Is Not Working

    Greetings, i am just trying to show the console output to label text. but it's just not working.. i have tired hours and hours of this and that but none is working.. and now came here for support here is the code i have tried so far: private static void ExecuteCLI(string[] args...
  11. SiamIT

    Question Make A Windows Printer (Virtual Printer) Bluetooth Discoverable

    Greetings.. For a project, i need to make a virtual printer on windows to be discoverable by Bluetooth so that mobile device can connect to printer and print anything from their mobile. virtual printer, will save the print as a PDF file, and my application will do the post processing...
  12. SiamIT

    Question Best Approach/Guide For Whatsapp Business API

    Greetings Everyone, We have developed retail software for our local market. A) My Business B) My customer/user who is using our software C) My Customer's clients/customer Who Getting the service of our software from our users. Currently my software allows to send order/service update from our...
  13. SiamIT

    Resolved Force Windows Default Message Display In English

    Greetings, I develop software for numerous clients around the world, and many of the clients is from non English country thus their computer Language is also non English. And sometimes, when my app face Unhandled exception it shows the error message with details. But problem is windows shows...
  14. Jfisher387

    Reaching an array inside a MongoDB Collection

    Hello, I have a mongoDB collection of orders. Inside each order is a list of items that need purchased. I successfully have saved my orders to a collection. Now I would like to browse through my orders and view the contents of each order.I would of guessed I was able to access the list inside...
  15. Programmable Physics

    only 1 instance of a form to exist while it has a parent form?

    I have a form application that when clicking a menustrip button, it opens an instance of a form. I made this newly opened form a child of other form to make the newly opened form(child) to stay in the borders of this(parent) form. I used form.MdiParent so newly opened form has a parent. If I...
  16. R

    Resolved IText Empty PDF

    Hello, I am working on a Blazor Server application. I am trying to create and download PDFs as follows. PDF opens in a new browser tab but unfortunately, it is empty. What is wrong with my code? Could you please help? private async Task ReportPDF() { var memoryStream = new...
  17. S

    Question Is it possible to write json in c#

    I'm trying to create a c# framework and a necessity I need is the ability to write with json in C# and if I can how can I go about doing so.
  18. A

    when make login using simple membership it not logged in success although I use same user name and password?

    I work on Web API c# web app . I face issue I can't login success although I have same username and password . when make break point on websecurity.login then trace it jump to ModelState.AddModelError so are there are any settings remaining or some configuration not done . public JsonResult...
  19. Programmable Physics

    Dragging an item from listBox1 and droping the item into listBox2 code does not work(AllowDrop=true)

    Although both of the listBoxes **AllowDrop=true** listBox2 does not allow me to drop an item from listbox1 into listBox2. VS 2022 does not give any error, warning or exception handling problem. The problem is that this code does not do what it supposed to do. It does not let me carry 1 item...
  20. MonsterMMORPG

    My C# and ASP.NET Core MVC Lecture Videos

    Hello everyone. My name is Furkan Gözükara. I am a Ph.D. computer engineer from Turkey. I have a software engineering dedicated Youtube channel named: SECourses : https://www.youtube.com/SECourses I want to share a few of my lecture playlists. The playlists contain the full course for free...
Back
Top Bottom