Traffic Offense System (using penalty/endorsement criteria)

Submitted by Chatikobo_L on
Hi guys, This is my third project on sourcecodester and 20th project in PHP. I hope you will love it! The traffic offense system helps the police to monitor traffic offenses and issuing of penalties that is endorsements to careless drivers. The system have three users the admin on the back-end and vid (Vehicle Inspection Department ) on the front-end and officer on the front end. Officer will

How to Create a Pie Graph Using PHP/MySQLi

Submitted by janobe on
This tutorial is about how to create a Pie Graph using PHP/MySQLi. In here, you will be able to learn the simple way of creating a pie graph by fetching the data inside the database. This pie graph is usually use in Analytics sales report to determine what kind of products have the most number of purchase. Whoever has the biggest slice in the pie graph it is the product that has the most number purchased by the customers.

Simple Automatic Search Box Tutorial Using Binding Source - Visual Basic 2010 embedded Database MS access

Submitted by ClydeTiu on
In this tutorial you will learn on how to create a simple "Automatic" search box . Using Binding Source. Step 1 Open Visual Basic 2010 and create a blank form. Step 2 Connect the database that you created. Step 3 Drag the table in to the form. Here is the code for the TextBox. Me.Data202BindingSource.Filter = "fDescript LIKE '" & TextBox5.Text & "%'" Hope you learn basic coding guys .... if you

Login Form Using Visual Basic 2010 with Embbeded database Microsoft Access Tutorial

Submitted by ClydeTiu on
In this source code you will learn on how to create a login form and connect VB.net to Microsoft Access. Creating Database - First you create a database in microsoft access - copy what is on the image shown above. Step 1 Open Microsoft Visual Studio 2010 and create a new windows form application for vb. Step 2 Create your User Interface. Step 3 Connect VB to MS ACCESS Step 4 Code for Log in Button

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.

Madrid National High School Payslip System Using Visual Basic 2010

Submitted by ClydeTiu on
Features - Register Payee - Create Pay-slip - User Friendly - Print Payslip - Export data`s to Excel - Print Employee Information - Import Data to Excel - Can Switch Admin or User mode - With Unique Restrictions Hope you learn basic coding guys. If you have questions contact me: Support Developer by donation

How to Create a Dropdown Menu Free from Errors.

Submitted by ClydeTiu on
If you encounter this problem using BindingSource and using Dim "" As New Arraylist Try this simple Tutorial first row of the database is not being updated. In this tutorial you will learn on how to create a dropdown menu free from errors. Step 1 First Drag Combobox in the Form. How to add items? Step 2 Right click Dropdownbox, then select properties. Step 3 Click the three dots shown in the image

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: