Get the Most Repeated Item in the ListBox

Submitted by donbermoy on
In this C# tutorial, I will teach you how to create a program that will get and display the most repeated item in the ListBox. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Creating a Paint Program when Moving Mouse using C#

Submitted by donbermoy on
In this tutorial, i will teach you how to create a program that paints the form when clicking and moving the mouse using C#. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your program as Mouse Move Paint. 2. You don't have to design your interface because we will only focus on the mouse event. 3. Now put this code for your code module.

File Searcher in C#

Submitted by donbermoy on
Today in C#, I will teach you how to create a program that will search for a file in a specific path using C#. But here, we will only search for a file in the desktop. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your program as File Searcher. 2.

Simple Payroll System

Submitted by donbermoy on
This is a simple payroll system for beginners. This system was programmed by my co-professor using Visual Basic 6.0 as frontend and SQL Server 2000 as backend. Features of the system: -login/logout -Employee Information -Emplyee List -Deductions: SSS, Tax, Others -Salary -Generate Payslip -Reports Account Information: username: admin password: admin Database name: Payroll For more inquiries and

Shutdown Manager in C#

Submitted by donbermoy on
In this tutorial, we will create a shutdown manager program that can log off, restart, and turn off your computer. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add three buttons named Button1 labeled as "Shutdown", Button2 labeled as "Logoff", and Button3 labeled as "Restart".

Search Item in a ListBox in C#

Submitted by donbermoy on
In this tutorial, i will teach you how to create a program that searches an item inside the listbox using C#. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application and name your project as Search Item in a ListBox. 2.

Create XML File using C#

Submitted by donbermoy on
Today in C#, I’m going to teach you how to create a program that also creates an XML file using C#. We all know that XML (Extensible Markup Language) is an easy way to create common information formats and share both the format and the data on the World Wide Web or elsewhere. Now, let's start this tutorial! 1.