How to Load Data in the Listview Using C# and MySQL Database

Submitted by janobe on
The Listview control is used to display a collection of items. This also provides many ways to arrange and display items with item text and an icon (optionally) is used to determine the type of item. So, now I’m going to teach you how to load data in the ListView using C# and MySQL Database. This is just a simple program but I’m pretty sure that this method will help you when you encounter problem of displaying set of data in the database and can be displayed in the Listview.

Java JSP and Bean CRUD

Submitted by Mureiithi James on
CRUD stands for Create, Read (or retrieve), Update, Delete. It is a Java Server Page (JSP) project with a JavaBean that is used to perfom the create read update and delete operations. For the database it uses java derby 'jdbc:derby://localhost:1527/sample' and table STUDENTS with 3 columns namely First name, Last name and ID number. I've used Semantic UI and w3.css for styling and JQuery.

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.

CV/Resume Maker Software

Submitted by biddut on
I demonstrate how we can build an application that creates the CV. As you know, resume/CV has different parts, such as - personal information, education, work experiences, skills, certifications, languages. We are using ASP.NET MVC 5, jQuery, and Bootstrap in order to build our application. Demo Link Here: http://www.resume.testbd.xyz/Resume or http://www.resume.testbd.xyz/Resume

How to Export Data to Excel Using VB.net and MS Access Database

Submitted by ClydeTiu on
Hi guys.. In this tutorial you will learn on how to export data to Microsoft Excel step by step. Create U.I Step 1 Create a database using Microsoft access Step 2 Connect Database to VB.net Step 3 Add References right Click then select properties shown on number 13 Here is the source code Imports Excel = Microsoft.Office.Interop.Excel Imports System.Data.OleDb Public Class frmgenerate Dim rdr As

Statement of Deduction System of Rural Bank Carrascal Sugirao Del Sur Using VB.net

Submitted by ClydeTiu on
Features - Register Client Information - View Client Information - Print Client Information - Create Statement of Deduction of Client - View and Print Statement of Deduction(S.O.D) - Can Generate Overall Statement Of Deductions of Client`s - Can Sign Up - Can Log-in - Back-up Database Tnt Number : 09096510899 Globe : 09454339345 gmail : [email protected] Facebook : Clyde Chectopher A. Tiu

How to Create a Doughnut Graph Using PHP/MySQLi

Submitted by janobe on
If you want to be creative in creating statistics sales report you can try this simple program that I’m going to share to you. This time, I will teach you how to create your own custom doughnut graph using Chart.js and PHP/MySQLi. This kind of graph demonstrates the products sale in different slices depending on the sales of the products. It also automatically set a colour to easily identify each products. Let’s begin.