Patient Information and Billing System

Submitted by donbermoy on
Hi! I want to share this system entitled Patient Information and Billing System created using VB.NET as frontend and SQL Server 2000 as backend. This system features: Patient Information Doctor Information Ward Information Patient Admission Billing System X-Ray Transaction User Accounts Administrator Account Information: username: admin password: admin Enjoy! :D Best Regards, Engr. Lyndon Bermoy

How To Load Content w/o Refreshing Page

Submitted by GeePee on
This is just a part of my new project POS and Inventory. This portion will teach you how to load content without refreshing using Ajax and CodeIgniter. You have to know CodeIgniter first before running this program. Sourcecodester has a tutorial for codeigniter. In this project, you will also learn how to animate menu button using ajax and jquery. As you will see, you can hide and show the submenu

Get and Display all COM Ports using C#

Submitted by donbermoy on
Today in C#, i will going to teach you how to create a program that will get all Computer ports and display it in a ListView using C#. We all know that COM Ports are serial communications port on a PC. 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 Get all Computer Ports. 2.

Display Directory Structure using TreeView in VB.NET

Submitted by donbermoy on
Today in VB.NET, i will teach you on how to create a program that loads and displays the directory structure of C using the TreeView control in VB.NET. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in Visual Basic 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 only one TreeView1 named TreeView11 to display the contents of C directory structure.

How to Compute Date Difference in C#

Submitted by donbermoy on
Today in C#, i will teach you how to create a program that finds and calculates the difference between two dates using C#. So, now let's start this Date Difference tutorial in C#! 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 Date Difference. 2.

ProgressBar Component in Java

Submitted by donbermoy on
Today in Java, i will teach you how to create a progressbar component using JProgressBar control in Java. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of ProgressBar.java. 2. Import javax.swing.* package because we will going to have the JProgressBar, JFrame, SwingUtilities in swing and also the JPanel as the container of this.