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.

How to Create a Question and Answer (QA) Revision Program in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a revision tool in Visual Basic. It will load a list of Questions and Answers (separated by a ":") and test you on the questions. Steps of Creation: Step 1: First we want to do a couple of things: Create a form with... Label4 - Current Question Button1 - Load QA List Button2 - Start Questions Button3 - Check Answer Textbox1 - Enter Answer Create

How to Create a File Downloader in Visual Basic

Submitted by Yorkiebar on
Introduction: Hello and welcome to a tutorial on how to make a single file downloader in Visual Basic. A word of advise; once you understand how this program works I would recommend adding the function to a new thread so the UI doesn't freeze while it is downloading. Steps of Creation: Step 1: First we want to get a direct download link to a file, you can get this by downloading a file then going

Breeding Station Inventory System

Submitted by loret_gapaz@ya… on
This is a Visual Basic 6.0 project using MySQL as the database backend. I'm using Navicat 8.0 as the database management tool. Just read the instructions and install the required software. If you have any question just email me at [email protected]. There are lots of features in my thesis. This system has a VB.NET 2010 and sql server 2008 version also. Just contact me if you have questions

How to Create a Slot Machine Game [Visual Basic]

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a Slot Machine type game in Visual Basic. Steps of Creation: Step 1: First we need a form. I have mine set out as the following... Textbox5 = Current Money Textbox4 = Current Bid Textbox1 = Slot 1 Textbox2 = Slot 2 Textbox3 = Slot 3 Label4 = Status Button1 = Spin Step 2: The first bit of code we want is to create our myMoney and myBid Integers

How to Create a Local Polling System

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a local polling system in a Visual Basic Application using its Project Settings. Steps of Creation: Step 1: First we need to set our project settings. I have put "str1", "str2" and "str3" to contains the polling string options, "option1", "option2" and "option3" to contain the votes for each option and finally "question" to contain the question

How to Create a Ninja Defuse [Minigame] in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on a small game to be made in Visual Basic - Ninja Defuse. A game to guess a randomly generated three digit code before the time runs out. Steps of Creation: Step 1: First we need to create our form with... - Textbox1 - First digit of guessed code - Textbox2 - Second - Textbox3 - Third - Label1 - Information of time - Label2 - Time remaining - Button1 - Begin

How To Create a Stopwatch in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a stopwatch in Visual Basic with lapping system. Steps of Creation: Step 1: So the way this is going to work is we will haev a timer running at a one second interval and each time it runs it will add one to our second count. It will then check our second count to see if it has been one minute and if it has it will add one to our minute count