Hotel Reservation System for EY Suites

Submitted by donbermoy on
When I was still a student, I already made various software/system projects, thesis writing, and capstone projects. One of those projects was this Hotel Reservation System for EY Suites that I have created. This Hotel Reservation System was programmed through Visual Basic 6.0 and Microsoft SQL Server 2000 as backend. Features of the System: Transaction - Reservation - Check-in - Check-out

Spell Check Tool in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a spell check tool in Visual Basic. Dictionary: First we need to get a dictionary of some sort, I am just going to create a simple text dictionary by opening a new Notepad document and typing: they're their there Note; we put one word per line so we can easily distinguish which words are which later on within our program.

Library Management System

Submitted by GeePee on

A simple Library Management System using ADODB as a connection to MS Access. This system includes reporting of all books recorded, books borrowed, past due books and penalties using Data Report. The feature of this system includes user maintenance and borrower's information, transactions such as adding new books, borrowing books and returning books. For you to be able to have the updated

Motivational Quote Selector in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a motivational quote selector to show you one random quote every day that will get you thinking. The Website: First we need a source of the random quotes, I've found this website which has an entire list of good, motivational quotes with the author listed as well... http://www.forbes.com/sites/kevinkruse/2013/05/28/inspirational-quotes/ Design: Next we need the design for our program... well, actually there is no design.

Patients With Doctors Recorder

Submitted by killerzone on
Title: Patients With Doctors Recorder Language : PHP,ajax,javascript Tags: PHP Ajax Javascript Jquery Features: Management Add patient and Doctor Update patient and Doctor Delete patient and Doctor Search patient and Doctor System Requirements: Xampp 1.7.3 or below Chrome,Firefox,Opera. etc. How to Install? Download the following files by clicking download below Extract the zip files to htdocs

Mobile Computer Dictionary Application in Android

Submitted by donbermoy on
Hi. This is an application that i have created in Basic4Andriod and SQLite Manager entitled Mobile Computer Dictionary. This application features to search and display the related computer definitions. I have just upload and completed it up to letter A only because I sell the complete application to my clients. But anyway, you can add words and definitions on it to the SQLite database.

Internet Explorer Cleaning Tool in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a temporary file cleaner for Internet Explorer in Visual Basic. Information: The path Internet Explorer currently uses for storing the temporary files and folders is; C:\Users\{User name}\AppData\Local\Microsoft\Windows\INetCache\IE Design: This form simply uses one button to delete the contents; we can keep its name the default 'button1' since it is the only component on the form.

File Manager in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a file manager in Visual Basic. Design: This program requires the following: {component} {name} {text} {use} Button button1 Open To open the directory or file selected. Button button2 Root To reset to the C:\ (drive). Button button3 Delete To delete the selected directory or file. Listbox listbox1 - To list the directories and files held within the current directory the user is browsing. Variables: We need to keep track of the current path of the listbox so we n

Justine’s Guest House Online Reservation System

Submitted by joken on
This is a complete sourcecode for Online Hotel Reservation System is created using PHP/MySQL that allows the guest to view room with equivalent rates whether a room is available or not. The system also can be used for easy storing and retrieval of information of guest and their transactions. And this system also integrated in the booking of hotel rooms. And the admin side of this system has the

Draw a Text in a Windows Form in VB.NET

Submitted by donbermoy on
In this article, we will create a program that can draw a text in a windows form when we click a button. We will use the Graphics and StringFormat class for this. 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.