Discover millions of ebooks, audiobooks, and so much more with a free trial

Only $11.99/month after trial. Cancel anytime.

Visual Basic 6.0 Programming By Examples: 7 Windows Application Examples
Visual Basic 6.0 Programming By Examples: 7 Windows Application Examples
Visual Basic 6.0 Programming By Examples: 7 Windows Application Examples
Ebook164 pages30 minutes

Visual Basic 6.0 Programming By Examples: 7 Windows Application Examples

Rating: 3 out of 5 stars

3/5

()

Read preview

About this ebook

Visual Basic is one of the easiest to learn computer programming language and yet it is very powerful.
In my tutorial I used VB 6 to explain step by step how to create a simple Visual Basic Application and relatively complex one (a Patient Management system) that is using database. Patient Management application source code is explained in details.
You will learn how to design and create a database in MS Access and how to create tables and queries.
The book includes a sample application that shows how to use Windows API function.
You will learn how to convert VB program that can be run only in Visual Basic development environment to a distributable application that can be installed on any client computer.
For illustration, I included 128 screen shot images and links to video.
You will be able to download from my website complete source code for 7 Visual Basic projects including a Password Keeper, a Patient Management and a Billing Management applications.
LanguageEnglish
Release dateMar 21, 2018
ISBN9781370337026
Visual Basic 6.0 Programming By Examples: 7 Windows Application Examples

Related to Visual Basic 6.0 Programming By Examples

Related ebooks

Programming For You

View More

Related articles

Reviews for Visual Basic 6.0 Programming By Examples

Rating: 3 out of 5 stars
3/5

2 ratings0 reviews

What did you think?

Tap to rate

Review must be at least 10 words

    Book preview

    Visual Basic 6.0 Programming By Examples - Sergey Skudaev

    Visual Basic 6.0 Programming by Examples

    By Sergey Skudaev

    Table of contents:

    Introduction

    Start Learning VB

    Variables and functions scope

    Form Events

    Checkers Game

    How to create custom icon

    Using Windows API Function

    How to Create a Database

    A Database Design and Implementation

    How to Create a Database and tables in Microsoft Access

    Creating a Query in Microsoft Access

    A Password Keeper VB Application

    A Deployment of the VB Application

    Patients Management Application

    Free Bonus:

    Useful Links

    My eBooks

    My web sites

    All Rights Reserved © 2012 Sergey Skudaev

    Introduction

    In 1995 Microsoft released Windows 95 and Visual Basic 4.0. Many US immigrants rushed to learn Visual Basic to become computer programmers. At that time I worked as a lab tech in a small laboratory on Flatbush Avenue in Brooklyn NY.

    My wife keep telling me,

    - Learn programming! You will earn good money!

    - But I am biologist, - I argued.- I have no idea what programming is!

    - Former musicians and housewives are learning programming! Come on! – argued my wife.

    I registered in a private computer school in Brooklyn and started to learn Visual Basic.

    Classes were three or four times a week during six months. I liked it. It was easy!

    In eight months, I took Microsoft Certified Exam in Visual Basic 4.0 and passed it. My former teacher invited me to his school to teach Visual Basic. It was fun.

    I liked programming so much that I continued my education in Borough of Manhattan community college where I learned 3 more computer languages: C++, Assembly and Java.

    Visual Basic is one of the easiest to learn programming language and yet it is very powerful.

    You do not have to be a geek, to understand it. One of my students did not know how to use computer, but after one year of learning Visual Basic he found job as computer programmer.

    Of cause, I do not promise that after reading my tutorial you will become a professional, but I promise that you will be able to continue learning Visual Basic on your own.

    You can download from my website 7 working VB projects: Hello World, Variable Scope,  Checkers Game, Using Windows API, A Password Keeper, A Patient management application and A Billing Management application.             

    The Password keeper application allows you to store any number of passwords that you do not need to remember anymore. 

    Start Learning VB

    Install Visual Studio 6.0 Enterprise Edition, or any edition you have. Insert CD in your CD drive and follow the instruction. Select Custom Installation and mark Microsoft Visual Studio 6.0 Enterprise Tools, Microsoft Visual Studio 6.0 Tools, Microsoft Visual Basic 6.0, Microsoft Visual C++ 6.0. Or you can install everything, if your hard drive is large enough. When installation completed, restart your PC. Go to start, Microsoft Visual Studio 6.0, Microsoft Visual studio 6.0 Enterprise tools. You will see the following menu items.

    Open Window Explorer. Select File, New, Folder (See picture below)

    A NewFolder folder is created. Right click on the new folder and select rename from the drop down menu.

    Type in VB for the folder name. Double click the VB folder to open it.

    Again select File, New Folder and create a new folder inside the VB folder. Rename it to start_vb.

    Select Start, Programs, Microsoft Visual Studio 6.0, Visual Basic 6.0. Visual Basic development environment displays. On the New Project window select the Standard EXE

    A default Visual Basic form is displayed.

    Select Tools, Options from the main menu. On the Editor tab mark the Require variable Declaration Check box.

    On the Environment tab mark Prompt for project. Prompt To Save Changes

    Click OK

    Select the Form properties

    Enjoying the preview?
    Page 1 of 1