IDE Walkthrough By: Engr. Faisal ur Rehman CE-105-Spring 2007.

Slides:



Advertisements
Similar presentations
VISUAL BASIC Visual Basic is derived from the Basic language (Beginner’s All-Purpose Symbolic Instruction Code) Visual Basic uses an event-driven programming.
Advertisements

Ch-11 Project Execution and Termination. System Testing This involves two different phases with two different outputs First phase is system test planning.
Using VB with MS Applications R. Juhl, Delta College.
The Microsoft View: Module 1: Getting Started. Copyright Course 2559B, Introduction to Visual Basic®.NET Programming with Microsoft®.NET. Lecture 1 Microsoft.
CA 121 Intro to Programming Tariq Aziz and Kevin Jones GUI Programming in Visual Studio.NET Chapter 1 Tariq Aziz and Kevin Jones.
Compunet Corporation Programming with Visual Basic.NET GUI Week # 11 Tariq Ibn Aziz.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
The Visual Studio. NET and VB
1b – Inside Visual Studio Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
2. Introduction to the Visual Studio.NET IDE 2. Introduction to the Visual Studio.NET IDE Ch2 – Deitel’s Book.
Microsoft Visual Basic 2005 CHAPTER 8 Using Procedures and Exception Handling.
Visual Basic Chapter 1 Mr. Wangler.
Testing. What is Testing? Definition: exercising a program under controlled conditions and verifying the results Purpose is to detect program defects.
Microsoft Visual Basic 2005: Reloaded Second Edition
Chapter 11: Introduction to the Visual Basic Environment Spreadsheet-Based Decision Support Systems Prof. Name Position (123) University.
Java Programming, 3e Concepts and Techniques Chapter 3 Section 65 – Manipulating Data Using Methods – Java Applet.
Chapter 3 Introducing Visual Basic.NET. 3.1 Visual Basic.NET Windows Programming -Used to create Windows, Web, and Console applications -Uses predefined.
PROGRAMMING IN VISUAL BASIC.NET VISUAL BASIC BUILDING BLOCKS Bilal Munir Mughal 1 Chapter-5.
1 1 Lab1 Ismail M. Romi – IT Dept, PPU, Visual Basic 2005 Programming Tour.
Lecture Set 1 Part C: Understanding Visual Studio and.NET – Applications, Solutions, Projects (no longer used – embedded in Lecture Set 2A)
Irwin/McGraw-Hill © The McGraw-Hill Companies, Inc., Visual Basic Projects Project Structure and VB’s Programming Tools chapter TWO.
 Application – another name for a program.  Interface – is what appears on the screen when the application is running.  Program Code – is instructions.
Chapter One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
Lecture Set 2 Part A: Creating an Application with Visual Studio – Solutions, Projects, Files.
1.NET FRAMEWORK CE-105 Spring 2007 Engr. Faisal ur Rehman.
1 Κατανεμημένες Διαδικτυακές Εφαρμογές Πολυμέσων Γιάννης Πετράκης.
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 Comprehensive Concepts and Techniques Chapter 8 Debugging, Creating Executable Files, and Distributing a Windows Application.
Module 1: Getting Started. Introduction to.NET and the.NET Framework Exploring Visual Studio.NET Creating a Windows Application Project Overview Use Visual.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
1.
How QuickTest Works with Objects USINGQTP65-STUDENT-01A.
Copyright (c) 2003 by Prentice Hall Provided By: Qasim Al-ajmi Chapter 2 Introduction to Visual Basic Programming Visual Basic.NET.
Lecture Set 2 Part A: Creating an Application with Visual Studio – Solutions, Projects, Files 8/10/ :35 PM.
Debugging tools in Flash CIS 126. Debugging Flash provides several tools for testing ActionScript in your SWF files. –The Debugger, lets you find errors.
Visual Basic Integrated Development Environment (IDE) 56:150 Information System Design.
The Development Process Compilation. Compilation - Dr. Craig A. Struble 2 Programming Process Problem Solving Phase We will spend significant time on.
Testing and Evaluating Software Solutions Introduction.
TEAM FOUNDATION VERSION CONTROL AN OVERVIEW AND WALKTHROUGH By: Michael Mallar.
Visual Basic.Net. Software to Install Visual Studio 2005 Professional Edition (Requires Windows XP Pro) MSDN Library for Visual Studio 2005 Available.
IE 411/511: Visual Programming for Industrial Applications Lecture Notes #2 Introduction to the Visual Basic Express 2010 Integrated Development Environment.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Debugger By: Engr. Faisal ur Rehman CE-105 Spring 2007.
Automation Engr. Faisal ur Rehman CE-105T Spring 2007.
Visual Basic.NET Windows Programming
INF230 Basics in C# Programming
Chapter 1: An Introduction to Visual Basic 2015
Chapter 2 – Introduction to the Visual Studio .NET IDE
3.01 Apply Controls Associated With Visual Studio Form
© 2016, Mike Murach & Associates, Inc.
CE-105 Spring 2007 Engr. Faisal ur Rehman
Visual programming Chapter 1: Introduction
3.01 Apply Controls Associated With Visual Studio Form
Introduction to the Visual C# 2005 Express Edition IDE
Using Procedures and Exception Handling
Module 0: Introduction Chapter 2: Getting Started
Module 1: Getting Started
Chapter 2 Visual Basic Interface
Quick Start Guide for Visual Studio 2010
VISUAL BASIC.
Introduction to Software Testing
Chapter 2 – Introduction to the Visual Studio .NET IDE
Lecture 09:Software Testing
CIS16 Application Development Programming with Visual Basic
1. Open Visual Studio 2008.
Tonga Institute of Higher Education
Visual Studio.
Overview Activities from additional UP disciplines are needed to bring a system into being Implementation Testing Deployment Configuration and change management.
Presentation transcript:

IDE Walkthrough By: Engr. Faisal ur Rehman CE-105-Spring 2007

Goal IDE definition Components Terminology Properties, method and Events Software release stages

Definition: IDE: It is an integrated development environment for developing, compiling, debugging and running applications. All development tools needed are provided in a single window interface

IDE Sub-Windows Solution Explorer Properties windows Tool box Debug / immediate window Task List Error List Object browser Output window

Terminology A VB.NET program consist of a project / Solution (sln). Each project may have: – Form – Class – Module – Resource – App Data Solution is the group of project

Terminology The exe file is present in bin\debug There are three phases / modes of a program i.e., Design, debug / pause and runtime. There are three modes of development known as software release stages: – Pre-alpha – Alpha – Beta

IDE – How to Make a new project Add new item Use immediate Window Use task list Object browser

Execution Control Starting (or Continuing) Execution Breaking Execution Stopping Execution Stepping Through Your Application – (Step into, Step over and step out) Running to a Specified Location Setting the Execution Point

Properties, method and Events

Properties can be thought of as an object's attributes, methods as its actions, and events as its responses. Properties: Balloon.Color = Red Balloon.Diameter = 10 Balloon.Inflated = True Methods: Balloon.Inflate Balloon.Deflate Balloon.Rise(5) Events: Sub Balloon_Puncture() Balloon.MakeNoise("Bang") Balloon.Deflate Balloon.Inflated = False End Sub

Properties Important properties are Location (Left, Top) Size (height, width) Text Name (lbl, cmd or btn, txt)

Methods Important methods are: Move Update Refresh Hide Show

Events Click Load MouseMove Keydown

Software Release Stages Pre-alpha: At this stage designers are still determining exactly what functionalities the product should and should not have. Alpha: It often lacks features promised in the final release but demonstrates the feasibility and basic structure of the software. The alpha build of the software is usually the first build delivered to the software testers.

Software Release Stages Beta (beta version or beta release): Implements all features in the initial requirements analysis. Some developers refer to this stage as a preview, as a technical preview (TP) or as an early access. Other versions are: Release candidate Gold/general availability release Box Copy Stable/unstable (Open Source)

Q & A

Define IDE Name Components Define – Task list – Immediate window – Properties – Methods – Events Software release stages Phases/ mode of program

Thanks