Programming in Visual Basic 2010: The Very Beginner's Guide
This book is an introduction to programming using Microsoft's Visual Basic.NET 2010. It is intended for novice programmers with little or no programming experience or no experience with Visual Basic. The text emphasizes programming logic and good programming techniques with generous explanations of programming concepts written from a non-technical point of view. More ...
How to Design an Access Relational Database Management System (RDBMS)
A Relational Database stores data as relations (a collection of tables with each table consisting of a set of rows and columns. A Relational Database Management System provides relational operators to manipulate the data in tabular form. This article explains step-by-step how to design an Access Relational Database Management System (RDBMS). More ...
How to Utilise and Apply Access Database Normalisation Techniques
In the design of an Access database, the process of organizing data to minimize redundancy is called normalization. Normalization usually involves dividing large, badly-formed tables into smaller, well-formed tables and defining relationships between them. More ...
Visual Basic 2010 Textbox Based Simple Edit Program
In this example, you'll create a very simple text editor that uses the Textbox control. This example is for beginners so I'll go step-by-step through the process of developing the program. More ...
Getting Started With Microsoft Access 2019
Microsoft Access database application has always been a powerful program and the latest version, Access 2019, no different. But all that power makes Access a difficult application to learn on your own. More ...
Introduction to Visual Basic
Visual Basic has been the most popular programming environment for more than twelve years. If you want to learn how to program, Visual Basic is the language for you. It is very easy to use, yet very powerful in the Windows Environment. More ...
List Drives and Folders with the VBScript FileSystemObject
This article show you how to write a VBScript that uses the FileSystemObject to list the drives and folders on your computer. More ...
Visual Basic 2005 Express Reserved Words or keywords
Reserved words or keywords are words that are part of the language and therefore have special meaning in Visual Basic. The reserved words cannot be used as names for your programming elements such as variables, functions, subroutines or procedures. More ...
Three Main Principles of OOP (Object Oriented Programming)
Object Oriented Programming (OOP) is actually classified by three main principles: Encapsulation, Inheritance, and Polymorphism. These appear to be frightening terms but are actually fairly easy principles to grasp. More ...
Easy Visual Basic Image Viewer
The easiest way to display images in Visual Basic is to use a PictureBox control. In this example, we'll use a PictureBox control to create a simple image viewer application, and we'll use an OpenFileDialog control to load an image file from disk. More ...
