Creating simple application in visual basic

Structure Of A Visual Basic Application

A VISUAL BASIC Application (Project) will be of .VBP extension and related forms are saved with .frmextension. A Simple VISUAL BASIC Project (.VBP). A Visual Basic Application (Project – saved as a file with .VBP extension) is made up of: 1. Forms Windows that you create for user interface (saved as a file with a .FRM extension) 2.Controls Graphical features drawn on forms to allow user interaction (text boxes, …

Structure Of A Visual Basic Application Read More »

Designing The Visual Interface Form

The first step in Visual Basic application is to create the forms that will be the basis for your application’ s interface .It comprises of two Steps: 1. Placing Controls on the form. 2. Setting Properties of Controls at Design Time. Placing Controls on the form: The following method will guide you about placing controls on the form. A window …

Designing The Visual Interface Form Read More »

Adding Code For The Program

The crucial step in building a Visual Basic application is to write code using the BASIC language. This is the most time consuming task in any Visual Basic application. Code is placed in code window. At the top of code window two boxes will apllear ,the object (or control) list and the procedure list.Select an object and the corresponding event procedure. A blank procedure will appear in window …

Adding Code For The Program Read More »

Compiling The Project

Compiling is a very important process for any program. By Compiling we can check only grammatical errors (Basically syntax errors), not logical errors (concept of application). For compiling a visual basic project follow Steps given below: 1.Go to Run Menu. 2.Select the option Start with full Compile. It will start your application with full compile,Otherwise you can start your …

Compiling The Project Read More »

Creating An Exe

EXE stands for Executable. It means that run an ExE and use the application without knowing the code and other details. When you start your project like above step, it does not create an EXE. Creating an EXE: 1. Go to File Menu. 2. Select the option projectname.exe option. Note that: An EXE is always created with the project name. Suppose you have given name myproject …

Creating An Exe Read More »

Running The Project

After compiling and making EXE, now it is finally turn to run a visual Basic Application. 1. Go to Run menu. 2. Select the option Run. 3. Click the Start button on the title Bar OR Simply Press F5 to run your VISUAL BASIC project. Following figure illustrates that: If you have created EXE ,then simply double click on the EXE icon, like that: A sample EXE icon in VISUAL BASIC: By double …

Running The Project Read More »

Making Different Applications

Creating an application in Visual Basic is simple. You have already learnt a lot about creating a VISUAL BASIC application. Now it will take just a minute to create your first VISUAL BASIC application. First of all let us make a Simple ‘Hello’ application, As we do in other programming language: Hello Visual Basic Application: For Animated Presentation Click Here The first step in …

Making Different Applications Read More »

Scroll to Top