Visual Basic

Visual Basic Source Code

Free Visual Basic Source Code. Download 10 latest Visual Basic system's projects with source code for free here.

Hospital Management

Submitted by helpinghand199… on
Our project Hospital Management system includes registration of patients, storing their details into the system, and also computerized billing in the pharmacy, and labs. Our software has the facility to give a unique id for every patient and stores the details of every patient and the staff automatically. It includes a search facility to know the current status of each room. User can search

Simple Calculator

Submitted by agriel_101 on
This is a simple calculator written in Visual Basic 6.0. Public a1 As Double, a2 As Double, result As Double, degri As Double Public a As String, tem As Integer Dim countertitle, countertitle1 As Integer Dim title, title1 As String Dim titledance, titledance1 As String Private Sub cmd0_Click() txt = txt & 0 End Sub Private Sub cmd1_Click() txt = txt & 1 End Sub Private Sub cmd2_Click() txt = txt &

Math Mania Educational Game

Submitted by Ranielle Canlas1 on
This is an educational game created in vb6, there are simple math problems that is shown on the screen, and you must answer it as fast as you can. The time for each question is determined using the progress bar control below the answering box, if you answered the question incorrectly, or your time runs out, the game is over, the high score is recorded using the settings entry For more information

Picture Puzzle Game

Submitted by Ranielle Canlas1 on
This is a game made in VB6 that randomizes the position of 6 images, you must rearrange the pictures according to the result on stopping the randomization. You must drag the pictures below and drop it down to the boxes in the right side. For more information, visit my facebook account http://www.facebook.com/renielcanlas , search "Peter's Programs" on Facebook or Contact me via phone @09358571433

How to use ADODC, MS Access in VB6

Submitted by Ranielle Canlas1 on
This is a simple program of inventory of stocks of a fast food chain. This is to demonstrate on how to use Adodc in connecting database from MS Access 2007, We inserted a DataGrid control to view the entire table and each field is bounded to a particular text box or combo box to show the details about the current record. You can add, edit and delete records if you want to and the login module is

Inventory System Using Adodc and DataGrid Control

Submitted by Ranielle Canlas1 on
Simple inventory of hard ware computer supplies. This program is created using visual basic 6.0 with Microsoft Access 2007 database to demonstrate the usage of Access Database and connecting it to the system by an Adodc control bounded to a datagrid. This also includes the Login system that is also conencted to user accounts from database and the splash screen has animated progress bar for loading

Computerized Inventory System Using MS Access

Submitted by Ranielle Canlas1 on
a simple inventory of school supplies. this system was created in Visual Basic 6.0 with MS Access 2007 Database. Using Adodc Control bounded to DataGrid and each field is connected to a particular textbox and combo box. Splash screen with loading from progress bar using timer and the login module is connected to users account stored in the database I created 5 variations of Inventory system, any

Computerized Inventory System using VB6

Submitted by Ranielle Canlas1 on
A simple Product Inventory management System Created using microsoft visual basic 6.0 and the database was created using microsoft access 2007.. and is connected using ADODC/Datagrid control. Adding/Editing and Deleting of records are possible and it is also capable of managing application users for system login. the splash screen has animated loading effect using progress bar and timer I created

Visual Basic Twitter Feed Scraper

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a Twitter profile tweet scraper. First create a form which contains a textbox for the profile username and a button to begin the process. Steps of Creation: Step 1: Import the following two imports so we can get the profile page source and manipulate it: Imports System.Net Imports System.Text.RegularExpressions Step 2: Now, add two functions