Category: C#

Converting a PDF to Excel

Converting a PDF to Excel using InvestInTech.com’s PDF to Excel SDK. PDF Sharp and other SDKs had the ability to read text from a PDF; however, I had found that InvestInTech’s PDF to Excel kept data in grid form. This

Posted in C#, Excel, PDF

How To Split A PDF Using PdfSharp

I recently completed a project which broker a PDF file into multiple files from which I converted to a MS Excel file and ultimately processed the data into a database. This segment is dealing with the portion for splitting a

Posted in C#, PDF, Split

Using LINQ to find a control in the ControlCollection

While writing a windows application in C#, I realized that there was no find control method in the ControlCollection class. This was a problem as it would create a significant amount of code to find a control. Well it turns

Posted in Better Coding, C#, Finding Controls, LINQ Tagged with: , ,

Posting Data From HTML to ASPX

Recently I had a need to have a web site post credentials to another web site.   The first site was standard HTML and the second site was DotNet (ASP.NET). In this example, we will be passing a user name and

Posted in ASP, C#, C-Sharp, Developement, How To, Web Tagged with: , , ,

DotNet Windows Form Image Transparency

Recently during a project I had a need to overlay an image on a windows form in order to indicate a status of inability.  This image had a semi-transparency quality as well as a full transparency background.  To my dismay,

Posted in Better Coding, C#, Deployment, DotNet