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:

PHP - Awesome Dynamic Employees or Students Register

Submitted by Patrick Mvuma on
Greetings from Malawi the warm heart of Africa. After doing a research of web systems to see how developers implement a register to their systems whether for a school project or company system to track students or employees availability. I noticed one thing in common most systems they display employees or students and clicking one at a time to record attendance which is so tiresome imagine if you

How to Create a Factorial Calculator in Visual Basic 2010

Submitted by ClydeTiu on
This code serves as a guide for factorial calculator. Feature - it automatically calculates the input number on the box. This is a sample code per txt_box. Label3.Text = "9" Dim a As Decimal, b As Decimal a = Label3.Text b = (9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1) Label4.Text = b Hope you learn basic coding guys .... if you have questions contact me: Support Developer by donation

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 Solve Currency (Peso Sign) Problem in VB.net

Submitted by ClydeTiu on
In this tutorial you will learn on how to change the currency which is the common problem of a programmer. If you are encountering currency problem. Try this tutorial. Step 1 Open Control Panel Step 2 Select "Chage display language Step 3 Go to formats Step 4 Select additional settings Step 5 Step 6 View Drop down menu Step 7 Go to Microsoft Word Step 8 Copy paste the peso sign in Currency symbol

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.