C# Tutorial

How to Search Data Between Two Dates Using C#

Submitted by janobe on
This time, I will teach you how to search data between two dates Using C#. This method has the ability to find all the records in the database between two inclusive dates. In this way, you can filter the data to be displayed in the datagridview. Hope this tutorial will help you to solve your problem in filtering data between two dates. See the procedure below.

How to Verify EVEN or ODD Number Using C#

Submitted by janobe on
In this tutorial, let’s learn how to verify the Even or Odd number using C#. This is just a simple program that you can easily understand and work on. For verifying whether the number is an Even or Odd, all you have to do is simply input any number that you like then press ENTER to execute the program and the result will tell you if it’s an Even or Odd number.

How to Save an Image in the MySQL Database Using C#

Submitted by janobe on
This one is the continuation of my previous tutorial which is How to Load an Image from the Local Directory into the PictureBox in C#. This tutorial will show you how to save an image in the mysql database using c#. In this method you will be able to save any image that you like that is available from the Local Directory to MySQL Database. See the procedure below.

How to Search Data in the DataGridView Using a ComboBox in C#

Submitted by janobe on
Searching data is very important most especially if you have a lot of data stored in the database. In this way, it will be easier for you to search the data that you need. So, in this tutorial, I will teach you how to search data in the datagridview using a combobox in c# and MySQL database. I based this on my last tutorial which is How to Fill Data in a ComboBox Using C# and MySQL Database because of their similar method.

How to Fill Data in a ComboBox Using C# and MySQL Database

Submitted by janobe on
In this tutorial, I will teach you how to fill data in a combobox using c# and mysql database. This method is so useful when you retrieve all the data in the column of the table in the database, to use it for the selection field in the registration form of the system. Just simply follow the step below to see how it works.

Enum in C#

Submitted by janobe on
In this tutorial I will teach you how to use enum in c#.net. In this method you will learn how the enum works based on employee’s status. This method is very helpful to use not only for beginner developers but also for professional developers.

How Pass the Data to Another Form in C#.Net

Submitted by janobe on
In this tutorial, I will teach you how to pass the data to another form in c#. This method has the ability to pass the value of the TextBox in Form1 to a TextBox in Form2. This method is so simple yet powerful. I hope this tutorial will help you solve your current problem in passing data to another form in c#. See the procedure below.