c#

How to Create File Directory in C#

Submitted by janobe on
Now, let’s learn how to create a file directory in C#. A directory is a container that is used to store and organized files that are arranged according to their importance. This simple program will help you create a file directory with ease. All you have to do is set the path where you want to create the directory in the textbox and it will create automatically. This is the use of System.IO.

How to Navigate Records Based on DataGridView Using C#

Submitted by janobe on
This time, let’s learn how to navigate records based on datagridview using C#. This tutorial will show to you that you can put limitation on your displayed records in the datagridview. Sometimes, it’s stressful to scroll down if you are looking for a record that contains a lot of data. Well, this tutorial is a big help for you because you don’t have to scroll down anymore. You can now easily find the record that you’re looking for in just a click. Simply click the next and previous button to see other displayed records.

Demonstrating Heap Sort in C#

Submitted by janobe on
Now, let’s learn how to demonstrate heap sort program in C#. But, before anything else let’s know what heapsort is? Here’s a short definition of it, heapsort is a comparison-based sorting algorithm that uses the heap data structure. In this program, the topmost item (the largest) is removed first and stored in an array. Then, it is replaced by the rightmost leaf and re-established the heap. The same process is repeated until there are no more items left in the heap and the array is sorted. Let’s begin:

Advance Login System in C# and MySQL Database

Submitted by janobe on
In this tutorial, I will teach you how to create an Advance Login System in C# and MySQL database. I made this method to help you organize and minimize the codes that you have written in the system. It is composed of a function that you can call it anytime you want and put it in the event handler. In this way, it will simplify your work and it can be done in no time. To start, just follow the instructions below.

How to Create Inclusive Dates Report in C#

Submitted by janobe on
This time, I will teach you how to create inclusive dates report in c#. I based this on my last tutorial which is how to create a Daily, Weekly and Monthly Report in C#.When you create a report this program will help you a lot because this will retrieve the previous months transactions. And this can also retrieve the previous weeks and specific dates of transactions. So let's begin:

How to Create Daily, Weekly and Monthly Report in C#

Submitted by janobe on
In this tutorial, I will teach you how to create Daily, Weekly and Monthly Report in C#. This method has the ability to generate report that would be display in the DataGridView. This is one of the most important function in a system because it is where the user or admin will find out the transaction every month. So, let's begin.

How to Put a Form Inside a Form Using C#

Submitted by janobe on
In this tutorial, I will teach you how to add a form inside the form using C#. This method has the ability to change the display and how the form works into an MDI parent form. Then, you will see that the form displays a sunken client area with a raised border, once you set this property into true . And in the client area, it is where all the MDI child forms placed to the parent form are displayed.