Contacts Book App in C# with SQLite Database with Entity Framework

Recently I started messing with SQLite database in Entity Framework and as usual I learn it by practically implementing it. This time I decided to improve upon one of my old semester project named Contacts Book which I also previously published on C Sharpens here. I was also contacted by a client to make some improvements to previous application to better suit his requirements. So here is the version 2.0 of Contacts Book.

Read more

Password Manager with Advanced Features developed in C#

If you are a guy like me who has accounts on almost every other website for many different purposes, you might want to use password managers unless you intend to use one same password for every website. In which case you will be vulnerable to hacking because if one of the site where you have account becomes compromised, your password will be known to hackers and they will try to use that password to access your account on other websites and your life will be pretty much ruined.

Read more

Simple Calculator in ASP .Net with Source Code

Early in my Software Engineering studies, I was convinced by some colleagues that the future for ASP.Net is very bleak so I started to concentrate on learning other languages such as PHP, Java, CSS for styling simple web pages & Javascript. Although I did not cut off myself from C# because that was my primary programming language to develop desktop apps, specially my semester projects but I never tried to concentrate on learning ASP until now. Now I am in my final year of Software Engineering & soon I’ll graduate so I started to search for applying different companies & Software Houses. One thing I noticed is that most of these jobs require candidates to have knowledge of ASP.Net & particularly MVC framework. Therefore I started learning ASP.Net from the basics again. Here is my first try at creating a Simple Calculator in ASP.Net with background code in C#.

Read more

Hiding Secret Messages in Images using C# Program

Steganography is the science of hiding information within other information. For example, a watermark “hides” an image on a piece of paper. If you look at most paper currency at a low angle or if you hold it up to a bright light, you can see a ghostly image inside the paper. When you look at the currency straight on in normal light, you cannot see the image.

Read more

C# vs Other Programming Languages

C# (pronounced C Sharp) Programming Language seems popular these days based on market trends. If you are working with .Net and ASP technologies, you are required to be familiar with the C# accurately. Here we will describes specifically what is similar, what is different, and the motivation behind the C# preference.

Read more

Circular Progress Bar in C# Windows Form Applications

I’ve been working on an application where I needed to show progress. The client wanted to have a better progress indicator & didn’t wanted to see the built-in progress bar that is available in control box. So I worked on this progressbar which is in circular shape. Developed in Csharp (C#). It is very easy to use. No hard coding. Even new programmers can easily integrate it in their win forms application.

Read more

C# Store and Retrieve Images in SQL Database with Hashing

This simple Windows Forms application in C# tutorial will show you how to store & retrieve images from SQL Database using Binary hashing instead of image linking with source code & demo. I had this topic on my list long ago so today I decided to publish it. There are many scenarios in which we need to save images in MS SQL Database with Hash Code. It is easy for professionals but new programmers find it hard to achieve first time. I myself encountered this situation in one of my semester projects.

Read more