An Introduction to Visual Basic Terms & Concepts.

Slides:



Advertisements
Similar presentations
What Was I Thinking??. Key Terms 1. Control 1. Control 2. Design Mode 2. Design Mode 3. Event 3. Event 4. Form 4. Form 5. Interface 5. Interface 6. Properties.
Advertisements

CE 311 K Introduction to Computer Methods VB Controls and Events Daene C. McKinney.
Information System Design Lab 5&6. User Interface Design.
Introduction to Visual Basic.NET Uploaded By: M.Sheraz anjum.
CS0004: Introduction to Programming Visual Studio 2010 and Controls.
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.
Text Box controls are used when users are required to type some input (during program execution), or output is displayed on the form (known as the user-
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
Visual Basic.net IDE. Integrated Development Environment.
Introduction to Visual Basic. What is Visual Basic? An environment for developing Windows applications Components –A GUI (Graphical User Interface - gooey)
Introduction to Visual Basic Chulantha Kulasekere.
Slide 1 Chapter 2 Visual Basic Interface. Slide 2 Chapter 2 Windows GUI  A GUI is a graphical user interface.  The interface is what appears on the.
Visual Basic Fundamental Concepts. Integrated Development Enviroment Generates startup form for new project on which to place controls. Features toolbox.
Modern concepts of programming - Course presentation - Prof. Dr Dragan Jankovic.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
1 Integrated Development Environment Building Your First Project (A Step-By-Step Approach)
Microsoft Visual Basic 2005: Reloaded Second Edition
Intellicad Visual Basic Application Marian Kate Santos Programming Paradigm.
Visual Basic Advanced Programming.
An Introduction to Visual Basic
Introduction to Visual Basic. Quick Links Windows Application Programming Event-Driven Application Becoming familiar with VB Control Objects Saving and.
IE 411/511: Visual Programming for Industrial Applications
© 2006 Lawrenceville Press Slide 1 Chapter 3 Visual Basic Interface.
Visual Basic Programming With Mr. deVries. Programming A series of instructions that are used to solve a problem Programmers must be open to seeing the.
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)
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 - A method used to create GUI applications. §BASIC - Beginner’s All - purpose Symbolic Instruction Code developed by John Kemeny. §VB- Evolved.
Irwin/McGraw-Hill Copyright© 2000 by the McGraw-Hill Companies, Inc. PowerPoint® Presentation to accompany prepared by James T. Perry University of San.
CHAPTER TWO INTRODUCTION TO VISUAL BASIC © Prepared By: Razif Razali 1.
University of Sunderland CIF 102/FIF102 Fundamentals of DatabasesUnit 15 Programming in Microsoft Access using VBA Using VBA to add functionality.
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.
CC111 Lec7 : Visual Basic 1 Visual Basic(1) Lecture 7.
1 Creating Windows GUIs with Visual Studio. 2 Creating the Project New Project Visual C++ Projects Windows Forms Application Give the Project a Name and.
CS324e - Elements of Graphics and Visualization Java GUIs - Event Handling.
What is Visual Basic.NET? 110 B-1 e.g. a word processor doesn’t do anything until the user clicks on a button, types text... A programming language that.
MS Visual Basic 6 Walter Milner. VB 6 0 Introduction –background to VB, A hello World program 1 Core language 1 –Projects, data types, variables, forms,
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
Visual Basic for Application - Microsoft Access 2003 Programming applications using Objects.
2a – Object Oriented Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
CMPF114 Computer Literacy Chapter 3 The Visual Basic Environment 1.
1 Introduction to Visual Basic Dr Mohd Nabil Almunawar MS 3403 Advanced Computing.
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
Programming Paradigms Different paradigms Procedural paradigm, e.g. Pascal Basic Functional paradigm, e.g. Lisp Declarative paradigm, e.g. Prolog Object-Oriented.
INFORMATION SYSTEM – SOFTWARE TOPIC: GRAPHICAL USER INTERFACE.
COMPUTER III. Fundamental Concepts of Programming Control Structures Sequence Selection Iteration Flowchart Construction Introduction to Visual Basic.
Visual Basic A Quick Tutorial VB Review for ACS 367.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Chapter 2 Build Your First Project A Step-by-Step Approach 2 Exploring Microsoft Visual Basic 6.0 Copyright © 1999 Prentice-Hall, Inc. By Carlotta Eaton.
Visual Basic Fundamental Concepts
Visual Basic.NET Windows Programming
Intellicad Visual Basic Application
Introduction to Programming and Visual Basic
Visual Basic Code & No.: CS 218
Introduction to Computer CC111
Chapter Topics 15.1 Graphical User Interfaces
Event-driven programming
Chapter 8: Writing Graphical User Interfaces
1. Introduction to Visual Basic
An Introduction to Visual Basic
VB 6.0.
Chapter 2 Visual Basic Interface
Objectives Learn about Function procedures (functions), Sub procedures (subroutines), and modules Review and modify an existing subroutine in an event.
VISUAL BASIC.
CIS16 Application Development Programming with Visual Basic
P.J.Balakumaran, AP, Commerce CA, SNMV CAS
Chapter 15: GUI Applications & Event-Driven Programming
Chapter Two Visual Basic.Net.
Visual C# - GUI and controls - 1
Tutorial 11 Using and Writing Visual Basic for Applications Code
Presentation transcript:

An Introduction to Visual Basic Terms & Concepts

What is VB? Visual Basic is a programming language (actually an environment) designed to create computer programs that run in Microsoft Windows. VB has been developed through many versions. This course uses VB 2008.

Getting Started VB 2008 addresses problem solving “from the outside, in.” In other words, the user interface is designed and created first, then it’s Events are programmed.

The Windows GUI The Graphical User Interface is the means through which users can interact with programs. Each window is called a form. Each form is populated with controls. It is through these controls that the programmer handles I/O in VB.

The Windows GUI There are many different kinds of controls: –Label –Text box –Radio button –Check box –Command button –Image –List box –Drop-down list –Frame –Line / Shape –Tab

A Sample Form Tab Checkbox Textbox Command Button Drop-down list Label

Programming Language Paradigms Recall the programming paradigms: Procedural Functional Declarative Object-oriented –Event-driven In this paradigm we develop projects rather than programs.

Object Oriented Programming A VB project consists of: –Objects - the nouns of OOP forms and controls are examples of objects. –Properties - the adjectives size, location, name, caption –Methods - the verbs Move, Print, Resize, Clear The dot operator –Object.property is the syntax for referring to a particular property of a particular object.