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.

Slides:



Advertisements
Similar presentations
CE 311 K Introduction to Computer Methods VB Controls and Events Daene C. McKinney.
Advertisements

An Introduction to Programming General Concepts. What is a program? A program is an algorithm expressed in a programming language. programming language.
An Introduction to Visual Basic Terms & Concepts.
Module 6: Introduction to C Language ITEI102 Introduction to Programming Structure of C++ Program - Programming Terminologies - Microsoft Visual Studio.
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.
Chapter 1 - An Introduction to Computers and Problem Solving
Lesson 6 Software and Hardware Interaction
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
Visual Basic 2010 How to Program Reference: Instructor: Maysoon Bin Duwais slides Visual Basic 2010 how to program by Deitel © by Pearson Education,
Chapter 1 - An Introduction to Computers and Problem Solving
Software. Application Software performs useful work on general-purpose tasks such as word processing and data analysis. The user interacts with the application.
Chapter 1- Visual Basic Schneider1 Chapter 1 An Introduction to Computers and Visual Basic.
Chapter 1- Visual Basic Schneider 1 Chapter 1 An Introduction to Computers and Visual Basic.
Starting Out with C++: Early Objects 5/e © 2006 Pearson Education. All Rights Reserved Starting Out with C++: Early Objects 5 th Edition Chapter 1 Introduction.
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
Course: Introduction to Computers
Microsoft Visual Basic 2012 CHAPTER ONE Introduction to Visual Basic 2012 Programming.
Microsoft Visual Basic 2005 CHAPTER 1 Introduction to Visual Basic 2005 Programming.
Lesson 4 Computer Software
TC2-Computer Literacy Mr. Sencer February 8, 2010.
1 Programming Concepts Module Code : CMV6107 Class Contact Hours: 45 hours (Lecture 15 hours) (Laboratory/Tutorial 30 hours) Module Value: 1 Textbook:
1 Chapter 1 - An Introduction to Computers and Problem Solving 1.1 An Introduction to Computers 1.2 Windows, Folders, and Files 1.3 Program Development.
Lesson 6 Operating Systems and Software
CS 0004 –Lecture 1 Wednesday, Jan 5 th, 2011 Roxana Gheorghiu.
Microsoft Visual Basic 2005: Reloaded Second Edition
An Overview of Using Computers
An Introduction to Visual Basic
Instructor: Tina Tian. About me Office: RLC 203A Office Hours: Wednesday 1:30 - 4:30 PM or .
CHAPTER FOUR COMPUTER SOFTWARE.
Chapter 1- Visual Basic Schneider1 Chapter 1 An Introduction to Computers and Visual Basic.
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.
1 Nassau Community CollegeProf. Vincent Costa Acknowledgements: An Introduction to Programming Using Visual Basic 2012, All Rights ReservedAn Introduction.
Integrated Development Environment (IDE)
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.
Visual C++ Programming: Concepts and Projects
CHAPTER TWO INTRODUCTION TO VISUAL BASIC © Prepared By: Razif Razali 1.
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 Chapter 1 - An Introduction to Computers and Problem Solving 1.1 An Introduction to Computers 1.2 Windows, Folders, and Files 1.3 Program Development.
Internal Lab Registeration labreg/lab/signup.aspxhttp:// labreg/lab/signup.aspx
Chapter 1 Computers, Compilers, & Unix. Overview u Computer hardware u Unix u Computer Languages u Compilers.
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.
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Edition Chapter 1 Introduction to Computers and Programming.
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
Digital Literacy Lesson 2. Hardware Hardware: the physical components of a computer. Includes input devices, processing devices, storage devices, and.
COMPUTER III. Fundamental Concepts of Programming Control Structures Sequence Selection Iteration Flowchart Construction Introduction to Visual Basic.
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.
ALMAJMA'AH UNIVERSITY College of Science and Humanitarians Studies in Alghat Information Technology Section (211Tal course)
Chapter 1 WHAT IS A COMPUTER Faculty of ICT & Business Management Tel : BCOMP0101 Introduction to Information Technology.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 1 An Introduction to Visual Basic.NET and Program Design.
OPERATING SYSTEMS (OS) By the end of this lesson you will be able to explain: 1. What an OS is 2. The relationship between the OS & application programs.
WHAT IS HARDWARE ? Computer hardware is the collection of physical elements that comprise a COMPUTER SYSTEM LIKE A MOUSE, MONITOR, KEYBOARD, SPEAKER MICROPHONE,
Programming Logic and Design Seventh Edition Chapter 1 An Overview of Computers and Programming.
Chapter I: Introduction to Computer Science. Computer: is a machine that accepts input data, processes the data and creates output data. This is a specific-purpose.
Identify internal hardware devices (e. g
CMPT 201 Computer Science II for Engineers
Dive Into® Visual Basic 2010 Express
Computer Software: Programming
Introduction to Visual Basic 2008 Programming
An Introduction to Computers and Visual Basic
An Introduction to Programming
Chapter 1 - An Introduction to Computers and Problem Solving
An Introduction to Visual Basic
An Introduction to Visual Basic .NET and Program Design
VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic
CIS16 Application Development – Programming with Visual Basic
Introduction to Computer Software
An Introduction to Computers and Visual Basic
An Introduction to Programming
Programming Logic and Design Eighth Edition
Presentation transcript:

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 Basic

Chapter 12 Programmer and User Programmer – the person who solves the problem and writes the instructions for the computer User – any person who uses the program written by the programmer

Chapter 13 Problem Solving Developing the solution to a problem Algorithm – a step by step series of instructions to solve a problem

Chapter 14 Computers and Complicated Tasks Tasks are broken down into instructions that can be expressed by a computer language A program is a sequence of instructions Programs can be only a few instructions or millions of lines of instructions

Chapter 15 All Programs Have in Common: Take data and manipulate it to produce a result Input – Process – Output Input – from files, the keyboard, or other input device Output – to the monitor, printer, file, or other output device

Chapter 16 Communicating with the Computer Machine language – low level, hard for humans to understand Visual Basic – high level, understood by humans, consists of instructions such as Click, If, Do

Chapter 17 How to Develop a Visual Basic Application Design the Interface for the user. Determine which events the controls on the window should recognize. Write the event procedures for those events.

Chapter 18 Sample Input Screen

Chapter 19 Visual Basic 2005 Language used to create Windows applications. Provides a Graphical User Interface or GUI. The sequence of instructions executed in the program is controlled by events.

Chapter 110 Visual Basic 2005 BASIC originally developed at Dartmouth in the early 1960s Visual Basic created by Microsoft in 1991 Visual Basic 2005 is similar to original Visual Basic, but more powerful

Chapter 111 Different Versions of Visual Basic Version 1.0 – 1991 Version 2.0 – 1992 Version 3.0 – 1993 Version 4.0 – 1995 Version 5.0 – 1997 Version 6.0 – 1998 Visual Basic.NET – 2002 Visual Basic.NET – 2003 Visual Basic 2005

Chapter 112 Visual Studio 2005 Visual Studio Team System Visual Studio Tools For Office Visual Studio Professional Edition Visual Studio Standard Edition Visual Studio Express Edition Free, easy-to-use and easy-to-learn tools for the novice and student developer Comparison of the products e/default.aspxhttp://msdn.microsoft.com/vstudio/products/compar e/default.aspx

Chapter 113 Download VB Express Installation CDROM ISO image upport/install/default.aspx upport/install/default.aspx Installation over the Internet b/download/default.aspxhttp://msdn.microsoft.com/vstudio/express/v b/download/default.aspx