Visual Basic

Visual Basic Rock, Paper, Scissors Game

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a simple Rock, Paper, Scissors game in Visual Basic which has no game graphics and is only to see how the game would work. Steps of Creation: Step 1: The first thing we need to do is import System.Random so we can randomly get a choice of Rock, Paper or Scissors for the computer:

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

Student Email Management System

Submitted by dah.factor on
Email Management System for students using visual basic 6 and ms access. Application Sample Account: Username: Admin Password: Admin If you have any questions and suggestions just comment or email me at [email protected] Facebook Account: https://www.facebook.com/dah.factor Twitter Account: https://twitter.com/factordah Youtube Account: http://www.youtube.com/channel/UCIU6REK-GOXXjGURcbvUA2g

Real time Clock using Visual Basic 6

Submitted by dah.factor on
Step 1: Open MS Visual Basic 6 Step 2: Select Standard EXE as the New Project. Now you have a form named Form1. Step 3: Add a Label to Form1. Now you also have a label named Label1 Step 4: Copy the code below and paste it inside Form1. Step 5: Click Run. Enjoy! :) Dim WithEvents kell As Timer Private Sub kell_Timer() Label1.Caption = Format$(Time, "hh:mm:ss AM/PM") End Sub Private Sub Form_Load()