top of page

Visual Basic [2] Tutorial Blog :


Lesson 2: Building the Graphical User Interface

As Visual Basic 2013 is a GUI-based programming language, the first step in developing a VB2013 application is to build a graphical user interface. In order to build a graphical user interface, you need to add controls from the toolbox to the form and then customize their properties.

The default form is also a control by itself therefore you can change its properties first before adding additional controls. Having added controls to the form, you then need to write code for each and every control so that they can response to events triggered by the user’s actions such as clicking the mouse or pressing a key on the keyboard.

Therefore, Visual Basic 2013 is also an event-driven programming language. We shall learn more about the concept of event-driven programming and coding in later lessons.

2.1 Changing the Properties of the Default-Form on User Interface When you start a new Visual Basic 2013 project, the IDE will display the default form along with the Solution Explorer window and the Properties window for the form as shown in Figure 2.1

Press Icon below for pdf


Featured Posts
Check back soon
Once posts are published, you’ll see them here.
Recent Posts
Archive
Search By Tags
No tags yet.
Follow Us
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page