Microsoft Visual Basic 2008 Tutorials
Online Contents For This Course
We have made some of the video tutorials for
Microsoft Visual Basic 2008
freely available to help you evaluate our training. Click on any of the linked lesson listings below to preview FREE!
Course Description
Visual Basic 2008, which is part of the Visual Studio 2008 package, is an object-oriented, general purpose programming language. Programmers using the Visual Basic 2008 language have the ability to write applications ranging from simple user-friendly front-end interfaces to complex database applications. VB 2008 applications can be deployed as stand-alone or web-based applications. This tutorial by Arthur Lee assumes no prior programming background and uses a building block approach beginning with simple programming features and examples while gradually introducing more complex features. Where appropriate, new features that have been introduced in the 2008 version of Visual Basic will be explained. Coding examples are provided to be referenced by the user to enhance their learning experience. Work files are included. To begin learning today, simply click on the movie links.
Choose your media type:
|
Introduction
|
|||
| Welcome to Visual Basic 2008 | (03:31) | T | |
| Versions of Visual Basic | (03:15) | T | |
| VB 2008 Programming Environment | (06:32) | T | |
| Getting Started | (05:04) | T | |
| Launching Visual Studio & VB 2008 | (05:06) | T | |
| A Quick & Simple Example | (04:12) | T | |
|
Saving & Executing Projects
|
|||
| Saving the Original Project | (04:37) | T | |
| Modifications & Re-saving | (03:37) | T | |
| Recognizing Error Types | (07:25) | T | |
| Naming Rules | (05:07) | T | |
| Basic Form Properties | (06:46) | T | |
|
Controls & Properties
|
|||
| Textboxes vs. Labels | (04:42) | T | |
| Radio Buttons vs. Check Boxes | (04:42) | T | |
| Picture Boxes | (04:56) | T | |
| AutoSize Property | (03:10) | T | |
| Shortcuts & Smart Tags | (03:44) | T | |
| Working with Multiple Controls | (03:58) | T | |
| Properties vs. Methods | (04:26) | T | |
|
Coding for Controls
|
|||
| Commenting Code | (04:16) | T | |
| Clearing the Contents of Controls | (07:23) | T | |
| Coding for Radio Buttons & Check Boxes | (05:50) | T | |
| Code for Visibility of Controls | (04:38) | T | |
| Coding for Multiple Properties | (06:17) | T | |
|
The User Interface
|
|||
| Keyboard Access Keys | (06:35) | T | |
| Tab Order for Controls | (04:24) | T | |
| Code for Concatenation | (04:44) | T | |
| Tooltips | (04:56) | T | |
| Form StartPosition & WindowState | (04:47) | T | |
|
Variables & Constants
|
|||
| What is a Variable? | (01:59) | T | |
| What is a Constant? | (03:31) | T | |
| Data Types | (04:24) | T | |
| Naming Rules | (02:09) | T | |
| Variable Declaration Examples | (04:18) | T | |
| Scope of a Variable | (04:49) | T | |
| Option Explicit | (05:55) | T | |
|
Coding for Calculations
|
|||
| Using the Parse Method | (05:20) | T | |
| Math Operations/Hierarchy of Operations | (05:04) | T | |
| Option Strict | (03:35) | T | |
| Data Conversion Issues | (05:22) | T | |
| Formatting Specifier Codes | (05:39) | T | |
|
Message Boxes
|
|||
| Construction of the Message Box | (06:45) | T | |
| Message Box Button Options | (04:24) | T | |
| Using the DialogResult Variable | (04:12) | T | |
| Complex Message Boxes | (07:09) | T | |
|
Accumulating & Counting
|
|||
| Role of Module Level Variables | (03:34) | T | |
| More on Accumulating | (04:58) | T | |
| Counting vs. Accumulating | (04:45) | T | |
| Try-Catch Blocks | (05:12) | T | |
| Complete Example/Accumulating Program | (03:48) | T | |
|
Conditional Programming
|
|||
| If-Else Statements | (03:18) | T | |
| Relational Operators | (04:15) | T | |
| Comparing Strings | (05:31) | T | |
| Compound Conditions | (04:35) | T | |
| Nested If Statements | (04:54) | T | |
| ElseIf Structure Example | (04:22) | T | |
| Case Structure | (03:47) | T | |
|
Input Validation
|
|||
| Common Validation Techniques | (06:30) | T | |
| Multiple Validations | (05:44) | T | |
| Preventing User Errors | (06:46) | T | |
| Using the Masked Text Box | (05:39) | T | |
| Error Provider Component/Validating Event | (06:46) | T | |
|
Menus
|
|||
| Menu Basics | (06:20) | T | |
| Create a Menu Example | (04:27) | T | |
| Keyboard Functionality With Menus | (05:55) | T | |
| Writing Code for Menus | (03:03) | T | |
| Context Menus | (03:48) | T | |
|
General Procedures
|
|||
| Sub Procedures | (04:20) | T | |
| Function Procedures | (05:50) | T | |
| Passing Arguments to Procedures | (04:55) | T | |
|
Lists & Combo Boxes
|
|||
| List Boxes & Combo Boxes Basics | (05:39) | T | |
| List/Combo Box Properties | (07:21) | T | |
| Add/Remove Items Methods | (06:39) | T | |
| Combo Box Example/SelectedIndex | (03:32) | T | |
|
Arrays
|
|||
| Fundamentals of an Array | (04:24) | T | |
| Array & ListBox Example | (05:12) | T | |
| Alternative Array Declaration | (03:22) | T | |
| Subscripts & Array Processing | (04:08) | T | |
| Two-Dimensional Arrays | (03:58) | T | |
|
Looping
|
|||
| Pre-Test/Post-Test Looping | (04:04) | T | |
| For-Next Loops | (03:35) | T | |
| Complete Looping Example | (04:30) | T | |
|
Printing
|
|||
| PrintForm vs. PrintDocument | (05:07) | T | |
| PrintDocument Component | (05:16) | T | |
| Using the Graphics Page for Printing | (04:20) | T | |
| PrintPreview Dialog Component | (04:15) | T | |
|
Database Files
|
|||
| XML Data | (03:25) | T | |
| ADO.NET & VB 2008 | (03:14) | T | |
| Database Application Example | (05:03) | T | |
|
Common Dialog Boxes
|
|||
| Overview of Common Dialog Boxes | (03:59) | T | |
| Color Dialog Box Demo | (04:31) | T | |
| Font Dialog Box Demo | (03:58) | T | |
| Open/Save/Browse Dialog Boxes | (03:38) | T | |
|
Multiple Form Projects
|
|||
| Adding/Removing New Forms | (06:12) | T | |
| Form Methods & Events | (06:47) | T | |
| Variables in Multiple Form Projects | (03:58) | T | |
| Miscellaneous Form Events | (05:32) | T | |
| Splash Screen | (07:23) | T | |
| About Form | (06:18) | T | |
|
WPF & Miscellaneous Topics
|
|||
| Windows Presentation Foundation Overview | (03:09) | T | |
| Copying/Moving Projects | (02:30) | T | |
| Executable File & Deployment | (02:39) | T | |
|
Wrap Up
|
|||
| Summary of Content Covered | (03:29) | T | |
|
Credits
|
|||
| About this Author | (00:53) | T | |
Course Information
| Course: | Microsoft Visual Basic 2008 |
| Author: | Arthur Lee |
| SKU: | 34039 |
| ISBN: | 1-935320-73-4 |
| Release Date: | 2009-09-30 |
| Duration: | 8.5 hrs / 103 tutorials |
| Work Files: |
Yes |
| Captions: | Available on CD and Online University |
Search within Captions
Subscription / Purchase Information
Visitors to VTC.com will be able to view all introductory videos for each training course.
Free Trial Members will gain access to first three chapters for each training course.
Sign up for a Free Trial
Full Access Members have full access to VTC.com's entire library of video tutorials.
If you are already a member, please login here.
United States
Email this Page
Send us Feedback