Visual Basic 2005 SCOPE Visual Basic Hands-on Training.

Slides:



Advertisements
Similar presentations
Anatomy of a Multimedia Project
Advertisements

P5, M1, D1.
Chapter 3 Application Software p. 6.
Chapter 1 - VB 2008 by Schneider1 Chapter 1 - An Introduction to Computers and Problem Solving 1.1 An Introduction to Computers 1.2 Windows, Folders, and.
ICS103 Programming in C Lecture 1: Overview of Computers & Programming
Lecture 1: Overview of Computers & Programming
Chapter 1 - An Introduction to Computers and Problem Solving
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Chapter 2- Visual Basic Schneider
Excel and VBA Creating an Excel Application
Java Programming, 3e Concepts and Techniques Chapter 1 An Introduction to Java and Program Design.
Objectives Overview Define system development and list the system development phases Identify the guidelines for system development Discuss the importance.
SDLC and alternative methodologies 1/14/2015 © Abdou Illia MIS Spring 2015.
Computers & Logic An Overview. Hardware Hardware is the equipment, or the devices, associated with a computer. For a computer to be useful, however, it.
Your Interactive Guide to the Digital World Discovering Computers 2012.
Microsoft Visual Basic 2012 CHAPTER TWO Program and Graphical User Interface Design.
Microsoft Visual Basic 2012 CHAPTER ONE Introduction to Visual Basic 2012 Programming.
Microsoft Visual Basic 2005 CHAPTER 1 Introduction to Visual Basic 2005 Programming.
Effective Methods for Software and Systems Integration
TC2-Computer Literacy Mr. Sencer February 8, 2010.
Systems Analysis and Design: The Big Picture
Introduction 01_intro.ppt
Java Programming, 2E Introductory Concepts and Techniques Chapter 1 An Introduction to Java and Program Design.
INFORMATION SYSTEM APPLICATIONS System Development Life Cycle.
CS 0004 –Lecture 8 Jan 24, 2011 Roxana Gheorghiu.
1 SWE 513: Software Engineering Usability II. 2 Usability and Cost Good usability may be expensive in hardware or special software development User interface.
Teacher: Ms. Olifer MICROSOFT VISUAL STUDIO 2010: PROPERTIES OF WINDOWS FORM OBJECT.
Grob Systems, Inc., the customer, requires an industrial computer system that will have a function of acquiring raw data, processing the data, presenting.
Visual Basic 2005 CHAPTER 2 Program and Graphical User Interface Design.
1 Nassau Community CollegeProf. Vincent Costa Acknowledgements: An Introduction to Programming Using Visual Basic 2012, All Rights ReservedAn Introduction.
Chapter 11 An Introduction to Visual Basic 2008 Why Windows and Why Visual Basic How You Develop a Visual Basic Application The Different Versions of Visual.
Program Design and Coding
Microsoft Visual Basic 2012 CHAPTER THREE Program Design and Coding.
Microsoft Visual Basic 2010 CHAPTER THREE Program Design and Coding.
Visual Basic.NET BASICS Lesson 5 Exponentiation, Order of Operations, and Error Handling.
Learning Objective The students should be able to: a. state the definition of software b. state the usage of software c. list different types of software.
Chapter 11 An Introduction to Visual Basic 2005 Why Windows and Why Visual Basic How You Develop a Visual Basic Application The Different Versions of Visual.
Visual Basic 2005 CHAPTER 2 Program and Graphical User Interface Design.
Cs413_design04.ppt Design and Software Development Design : to create a functional interface that has high usability Development : an organized approach.
COMPUTER SOFTWARE Management Information Systems.
INSERT BOOK COVER 1Copyright © 2012 Pearson Education, Inc. Publishing as Prentice Hall. Exploring Getting Started with VBA for Microsoft Office 2010 by.
Connecting with Computer Science2 Objectives Learn how software engineering is used to create applications Learn some of the different software engineering.
Introduction to Programming in VB Chapter 1. 2 Software Development Life Cycle Gather Requirements Design Program Code & Test Program Implement u Software.
Microsoft Visual Basic 2010 CHAPTER TWO Program and Graphical User Interface Design.
Chapter 12 Information Systems and Program Development Discovering Computers Technology in a World of Computers, Mobile Devices, and the Internet.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
MIT App Inventor Lesson 3 Algorithms Variables Procedures.
How Computers Solve Problems Computers also use Algorithms to solve problems, and change data into information Computers can only perform one simple step.
Microsoft Visual Basic 2015 CHAPTER ONE Introduction to Visual Basic 2015 Programming.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 1 An Introduction to Visual Basic.NET and Program Design.
CHAPTER 1 OVERVIEW OF COMPUTER AND PROGRAMMING 1.1 Electronic Computer Then and Now 1.2 Computer Hardware 1.3 Computer Software 1.4 The Software Development.
Systems Analysis & Programming 10.1 Systems Development 10.2 Programming: A Five-Step Procedure Generations of Programming Languages 10.4 Programming.
CHAPTER ELEVEN Information System Development and Programming Languages Copyright © Cengage Learning. All rights reserved.
System Design, Implementation and Review
Computer Software: Programming
Introduction to Visual Basic 2008 Programming
Chapter 2- Visual Basic Schneider
Program and Graphical User Interface Design
The life cycle.
An Introduction to Visual Basic .NET and Program Design
Program and Graphical User Interface Design
VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic
Chapter 1 (pages 4-9); Overview of SDLC
CLINICAL INFORMATION SYSTEM
Chapter 2- Visual Basic Schneider
Chapter 2- Visual Basic Schneider
Basic Concepts of Algorithm
ICS103 Programming in C 1: Overview of Computers And Programming
Presentation transcript:

Visual Basic 2005 SCOPE Visual Basic Hands-on Training

2 Chapter 2: Program and Graphical User Interface Design2 Objectives ►Understand what is a program ►Understand what programming is ►Understand the program development life cycle ►Create a Visual Basic 2005 Windows Application project

2 Chapter 2: Program and Graphical User Interface Design3 What is a Computer Program? A set of instructions that tells the computer hardware how to obtain input, what action to perform, and the output to produce.

2 Chapter 2: Program and Graphical User Interface Design4 What Programs Do Input Data (Values) Process (Calculations) Output Results (Information)

2 Chapter 2: Program and Graphical User Interface Design5 What is a Developer? One who develops a program (application) by writing the instructions (code) to produce a desired results, also referred to as a software engineer or computer programmer.

2 Chapter 2: Program and Graphical User Interface Design6 Program Development Life Cycle ►Set of phases and steps that are followed by developers to design, create, and maintain a computer program Gather and Analyze the Program Requirements Design the User Interface Design the Program Processing Objects Code the Program Test the Program Document the Program/System Deploy the Program/System Maintain the Program/System

2 Chapter 2: Program and Graphical User Interface Design7 Phase I: Gather and Analyze the Program Requirements ►Gather project requirements by interviewing users, reviewing current procedures, and completing other fact-gathering tasks ►Two types of requirements documentation Requirements document Use Case Definition or OIP

2 Chapter 2: Program and Graphical User Interface Design8

2 9

2 10 OIP Form OUTPUTSelected room Room selected confirmation message INPUTSelect Image PROCESSDisplay image Hide image Display message Hide message Enable button(s) Disable button(s) Exit program

2 Chapter 2: Program and Graphical User Interface Design11 Phase 2: Design the User Interface ►Developers sometimes spend 25% to 40% of the program design time on the user interface Presentation layer ►Use Visual Studio to create the user interface ►Interface designs are often called mock-ups

2 Chapter 2: Program and Graphical User Interface Design12 Problem Definition ►You are to create a hotel room selection program.

2 Chapter 2: Program and Graphical User Interface Design13 Phase 3 – Design the Program

2 Chapter 2: Program and Graphical User Interface Design14 OEA Form (1) OBJECT Exit button EVENTTASK ClickExit program OBJECT Standard Room button EVENTTASK ClickDisplay Standard room image Hide Deluxe room image Enable Select Room button

2 Chapter 2: Program and Graphical User Interface Design15 OEA Form (2) OBJECT Deluxe Room button EVENTTASK ClickDisplay Deluxe room image Hide Standard room image Enable Select Room button OBJECT Select Room button EVENTTASK ClickDisable buttons Display room confirmation message Enable Exit button

2 Chapter 2: Program and Graphical User Interface Design16 Phase 4/5 – Code and Test the Program ►After the events and tasks within the events have been identified, the developer is ready to code the program Entering Visual Basic statements to accomplish the tasks specified on the event planning document ►Developer enters the code and implements the logic