Programming Languages
Programming Languages
formal languages
used to communicate instructions to a computer.
create software, applications, and websites that can be executed by computer.
Java, Python, JavaScript, C++, and Ruby.
an object’s procedures can access and modify the data fields of the object with which they are
associated.
Event-Driven Programming
flow of the program is determined by user actions (mouse clicks, key presses), sensor
outputs, or messages from other programs.
different sets of code based on the user’s interactions.
suitable for graphical user interfaces, interactive applications, and real-time systems.
JavaScript, Python with certain libraries
To create a new project, click the New Project link off of the VB 2010 Express Start Page
Solution Explorer – displays all objects inside the current solution such as Forms, Classes,
Modules, Custom Controls
Properties – solutions, projects, classes, forms, modules, and controls, all of which possess
different attributes or properties. can be either changed in design time or at runtime. To change
these properties at design time, the Properties window is used.
Forms Designer
the heart of your application; it is the "screen" or ”window” that your users will interact with.
Toolbox
Objects in VB.NET project are automatically given a “numeric name” ( “Form1”, “Form2”.). It
is good programming practice to rename these objects to something more meaningful.
click on one control with your mouse, hold the Ctrl key, and click the other controls.
“lasso” the desired controls with your mouse
To open the project through Windows, navigate to the folder containing your project’s solution
(.sln) file, and double-click it.
To open your project through VB 2010 Express
click the “Open Project” link on the Start Page, and navigate to your solution file from
there
Another way is to click the link to that project under “Recent Projects”
Or through the File menu, Open Project option.