Visual Basic Notes Print
Visual Basic Notes Print
NET
1991, VB1 Debuts (was introduced)
2010, VB (10.0)
2012, VB (11.0)
2015, VB (14.0)
2017, VB (15.0)
What are some of the elements you expect to see in a Windows program?
Window (form), button, textbox, label, radio button, checkbox, dropdown list box
• Master VB.NET and you master programming the Windows interface, which is the most popular user
interface in the world (by far!)
► Most Visual Basic 2015 programs are event-driven programs that communicate with the user
through a graphical user interface (GUI)
► An event means the user has initiated an action that causes the program to perform a type of
processing in response.
- It holds the data or instructions that the CPU is presently processing. RAM is called temporary or
volatile storage because everything in most types of RAM is lost as soon as the microcomputer is
turned off or the power disrupted.
A ROM chip is a memory chip that stores instructions and data permanently. Its contents are placed into
the ROM chip at the time of manufacture and cannot be modified by the user. A CPU can read and
retrieve the instructions and data from the ROM chip, but it cannot change the contents in ROM. ROM
chips usually contain special instructions for computer operations such as ROM BIOS. ROMs are also
called firmware. The variations on the ROM chip include PROM, EPROM and EEPROM.
► Contains all the features needed to create, run, and test programs
► Solution .sln
► Project .vbproj
► Container for storing files associated with a specific piece of the application