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 …
Read More »Creating simple application in visual basic
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 …
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 …
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: …
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 …
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 …
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 …
Read More »