Visual Basic.net IDE. Integrated Development Environment.

Slides:



Advertisements
Similar presentations
An Introduction to Visual Basic Terms & Concepts.
Advertisements

Information System Design Lab 5&6. User Interface Design.
Introduction to Visual Basic.NET Uploaded By: M.Sheraz anjum.
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
Introduction to Visual Basic Programming. Lecture Outline History What is Visual Basic First Look at the VB 6.0 Environment Some VB Terminology Our first.
 2006 Pearson Education, Inc. All rights reserved Introduction to the Visual C# 2005 Express Edition IDE.
PROBLEM SOLVING The first step in writing instructions to carry out a task is to determine what the output should be (What should the task produce?) The.
Visual Basic Project Files:.VBP file: Project File: a small text file that contains the names of other files in the project, as well as some information.
 2002 Prentice Hall. All rights reserved. Chapter 2 - Introduction to the Visual Studio.NET IDE Outline 2.1Introduction 2.2Overview of the Visual Studio.NET.
Introduction to computers & Visual Basic School of Business Eastern Illinois University © Abdou Illia, Spring 2003 (Week 3, Monday 1/27/2003)
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
1 Introduction to the Visual Studio.NET IDE Powerpoint slides modified from Deitel & Deitel.
2. Introduction to the Visual Studio.NET IDE 2. Introduction to the Visual Studio.NET IDE Ch2 – Deitel’s Book.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
Hands-on Introduction to Visual Basic.NET Programming Right from the Start with Visual Basic.NET 1/e 6.
An Introduction to Visual Basic
1 1 Lab1 Ismail M. Romi – IT Dept, PPU, Visual Basic 2005 Programming Tour.
A First Look At Microsoft Visual Basic Lesson 1. What is Microsoft Visual Basic? Microsoft Visual Basic is a software development tool, which means it.
PROBLEM SOLVING The first step in writing instructions to carry out a task is to determine what the output should be (What should the task produce?)
Integrated Development Environment (IDE)
Basic Controls & Properties Chapter 2. Overview u VB-IDE u Basic Controls  Command Button  Label  Text Box  Picture Box u Program Editor  Setting.
Copyright © 2001 by Wiley. All rights reserved. Chapter 2: Using Visual Basic to Create a First Project Getting Started with VB Development Environment.
Chapter 3 Introducing Visual Basic
 Application – another name for a program.  Interface – is what appears on the screen when the application is running.  Program Code – is instructions.
Chapter Two Creating a First Project in Visual Basic.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 3.1 Test-Driving the Welcome Application 3.2.
Chapter 3 The Visual Basic Editor. Important Features of the VBE Alt-F11 will open the Visual Basic Editor. The Code window is to the right, Project Explorer.
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
 2006 Pearson Education, Inc. All rights reserved Introduction to the Visual C# 2005 Express Edition IDE.
Chapter 2 – Introduction to the Visual Studio .NET IDE
UnitII Visual basic Controls and toolbars. What is visual basic Visual Basic (VB) is an ideal programming language for developing sophisticated professional.
Integrated Development Environment Visual Basic IDE Slide 2 of 10 Topic & Structure of the lesson Introduction Integrated Development Environment Tool.
1 Visual Basic Part I - A tool for customizing your program Principles of GIS
Hands-on Introduction to Visual Basic.NET Programming Right from the Start with Visual Basic.NET 1/e 6.
 2002 Prentice Hall. All rights reserved. 1 Chapter 2 – Introduction to the Visual Studio.NET IDE Outline 2.1Introduction 2.2Visual Studio.NET Integrated.
1 Introduction to Visual Basic Dr Mohd Nabil Almunawar MS 3403 Advanced Computing.
Copyright (c) 2003 by Prentice Hall Provided By: Qasim Al-ajmi Chapter 2 Introduction to Visual Basic Programming Visual Basic.NET.
Object-Oriented Application Development Using VB.NET 1 Chapter 2 The Visual Studio.NET Development Environment.
Chapter 3 I Need a Tour Guide (Introduction to Visual Basic 2010) Clearly Visual Basic: Programming with Visual Basic nd Edition.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 3 Building an Application in the Visual Basic.NET Environment.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
TOOLBOX. The Toolbox Intrinsic Controls - always included in the Toolbox ActiveX Controls - separate files with ocx file extension Insertable Objects.
IE 411/511: Visual Programming for Industrial Applications Lecture Notes #2 Introduction to the Visual Basic Express 2010 Integrated Development Environment.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 2 The Visual Basic.NET Integrated Development Environment.
 2002 Prentice Hall. All rights reserved. 1 Introduction to the Visual Studio.NET IDE Outline Introduction Visual Studio.NET Integrated Development Environment.
 2007 Pearson Education, Inc. All rights reserved Introduction to the Visual Basic Express 2005 IDE.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
Chapter 3: I Need a Tour Guide (Introduction to Visual Basic 2012)
Chapter 2: The Visual Studio .NET Development Environment
Chapter 2 – Introduction to the Visual Studio .NET IDE
3.01 Apply Controls Associated With Visual Studio Form
Introduction to Computing
1. Introduction to Visual Basic
How to design a Windows Forms application
3.01 Apply Controls Associated With Visual Studio Form
Introduction to the Visual C# 2005 Express Edition IDE
VB 6.0.
User Forms.
Visual Basic Project Development Environment
Visual Basic.
Chapter 2 – Introduction to the Visual Studio .NET IDE
Hands-on Introduction to Visual Basic .NET
Hello World in Visual Basic
Visual Basic Project Development Environment
Визуалды бағдарламалау ортасы.
P.J.Balakumaran, AP, Commerce CA, SNMV CAS
Understanding the Integrated Development Environment
Chapter 4 Enhancing the Graphical User Interface
Presentation transcript:

Visual Basic.net IDE

Integrated Development Environment

Visual Basic Workspace Menu bar Standard toolbar Toolbox window Project container window Form window Property description window Properties window Form layout window Project explorer window Note: VB.net IDE has added more features not available on VB 6.0

Menu bar Contains basic functions that appear in all Windows applications File Edit View Tools Help

Menu Bar

Standard Toolbar Add standard exe project Add form Menu editor Open project Save project Paste start Break End Project explorer Properties window Object browser Form layout window Toolbox

Standard Toolbar

Visual Basic Toolbox Pointer Label Frame Checkbox Combobox Hscrollbar Timer DirListBox Shape Image Picturebox Textbox Command button Option button List box Vscroll bar *note these are just a small sample of the tools in Visual Basic

Visual Basic Toolbox

Solution Explorer Window View Code button View object button Toggle folders button Form name and icon Project name and icon

Solution Explorer Window

Properties Window Properties list Properties settings

Properties Window

Visual Basic (Objects) Objects are the physical things you place onto a form. The form itself is an object Some examples of objects are labels, command buttons, & text boxes. Each object has a set of properties associated to It. The manipulation of these properties effects an object

Objects (Naming Conventions) Combo box (cbo) Text box (txt) Label (lbl) Form (frm) Frame (fra) Common dialog (dlg) Image (img) Timer (tmr) Option button (opt) Check box (chk) Menu (mnu) Toolbar (tlb) *note all objects should have a unique & descriptive name

Properties Properties tell something about an object, such as its name, color, size, location, or how it will behave You can think of properties as adjectives that describe objects When you refer to a property, you first name the object, add a period and then name the property Example: Form1.Caption

Methods Actions associated with objects are called methods Methods are the verbs of the object-oriented programming Some typical methods are Move, Print, Resize, and Clear You refer to methods as Object.Method For example, a Print method can apply to different objects. Printer.Print sends output to the printer object; Form1.Print sends output to the form called Form1