Coding
Data breakpoints
I am trying to set a data breakpoint using C#, Windows 10, in a Winforms project. The version of VS is 2019. The problem I am having is that the option is grayed out under Read more…
I am trying to set a data breakpoint using C#, Windows 10, in a Winforms project. The version of VS is 2019. The problem I am having is that the option is grayed out under Read more…
Hello,we’re generating PDFs for our client. In that generated PDF there are some inputs plus two signatures. Our goal is when the user signs one of the signatures, then we want to lock All or Read more…
I’ve started on a little open source passion project to make yet another online Sudoku app using client-side Blazor (WASM). I chose Blazor specifically so I can eventually integrate my Sudoku solver, which is written Read more…
I’m building an application that manages employee and inventory information. I’m using WinForms, SQLServer, and Dapper. (I know, Winforms is dead, etc. This is largely a learning project, so the next time around I’ll use Read more…
Hi all,I have one requirement where I have one form in Index.html and I want to display the data for the form on the next page i.e test.html. Here my requirement is to use PHP Read more…
Is there a way to do something like this: db.People.Single(x => x.Id = 123).Select(x => new { x.FirstName, x.LastName }); (.Select is an extension method to IEnumerable) Or do I have to write it as: Read more…
Based on advice from past threads on this sub, I started learning PHP from the Laracasts PHP track. I’ve so far finished the first 15 videos, was just about to start Routing before I took Read more…
Hello,I’m looking for the best way to do approach an issue I’ve run into. I’m creating a flat file with a fixed width for each column of 50 characters. Strings from my datatable that are Read more…
Hey there, I’m new here, recently joined this community.I have one question. Are there any faster methods to send HTTP POST requests? I’ve been using timer, with like 200ms interval, but application gets laggy and Read more…
I am currently trying to write a piece of code that will increment letters. I have written the below function and this works perfectly fine. (ignore the test function name and any missing outer required Read more…