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.

Slides:



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

VISUAL BASIC Visual Basic is derived from the Basic language (Beginner’s All-Purpose Symbolic Instruction Code) Visual Basic uses an event-driven programming.
Information System Design Lab 5&6. User Interface Design.
Microsoft® Small Basic
Introduction to Visual Basic.NET Uploaded By: M.Sheraz anjum.
Using Macros and Visual Basic for Applications (VBA) with Excel
AA high level programming language. IIt is created by Microsoft. UUses a graphical environment called the Integrated Development Environment (IDE).
A graphical user interface (GUI) is a pictorial interface to a program. A good GUI can make programs easier to use by providing them with a consistent.
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.
Visual Basic Project 1 IDS 306 Spring 1999 V. Murphy.
Lesson 3: Using Windows Programs. 2 Concept 3.1 Common Features in Programs A program is a set of directions that tell the computer what to do –Different.
Introduction to computers & Visual Basic School of Business Eastern Illinois University © Abdou Illia, Spring 2003 (Week 3, Monday 1/27/2003)
Using the Visual Basic Editor Visual Basic for Applications 1.
Introduction to Visual Basic. What is Visual Basic? An environment for developing Windows applications Components –A GUI (Graphical User Interface - gooey)
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 Chapter 1 Mr. Wangler.
Programming with Microsoft Visual Basic 2012 Chapter 12: Web Applications.
® Microsoft Access 2010 Tutorial 11 Using and Writing Visual Basic for Applications Code.
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.
© 2006 Lawrenceville Press Slide 1 Chapter 3 Visual Basic Interface.
Teacher: Ms. Olifer MICROSOFT VISUAL STUDIO 2010: PROPERTIES OF WINDOWS FORM OBJECT.
Visual Basic 101.
Clearly Visual Basic: Programming with Visual Basic 2008 Chapter 4 I Need a Tour Guide.
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.
Chapter 8: Writing Graphical User Interfaces Visual Basic.NET Programming: From Problem Analysis to Program Design.
Irwin/McGraw-Hill © The McGraw-Hill Companies, Inc., Visual Basic Projects Project Structure and VB’s Programming Tools chapter TWO.
Productivity Programs Common Features and Commands.
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 One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
OCC Network Drives  H:\  P:\ 
Tutorial 11 Five windows included in the Visual Basic Startup Screen Main Form Toolbox Project Explorer (Project) Properties.
Chapter Two Designing Applications Programming with Microsoft Visual Basic th Edition.
CHAPTER TWO INTRODUCTION TO VISUAL BASIC © Prepared By: Razif Razali 1.
CC111 Lec7 : Visual Basic 1 Visual Basic(1) Lecture 7.
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
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.
Visual Basic CDA College Limassol Campus Lecture:Pelekanou Olga Semester C Week - 1.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
XP New Perspectives on Microsoft Office Access 2003 Tutorial 10 1 Microsoft Office Access 2003 Tutorial 10 – Automating Tasks With Macros.
Slide 1 Using Menu Bar & Common Dialog Boxes. Slide 2 Setting Up the Main Items v First open the form on which you want the menu located v Then start.
CMPF114 Computer Literacy Chapter 3 The Visual Basic Environment 1.
BBT 10 Visual Basic 03 Enrichment. Tip Before creating any files for your project, first create a new folder Save all of your files in the folder Pieces.
Chapter 3 I Need a Tour Guide (Introduction to Visual Basic 2010) Clearly Visual Basic: Programming with Visual Basic nd Edition.
COMPREHENSIVE Access Tutorial 11 Using and Writing Visual Basic for Applications Code.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 2 The Visual Basic.NET Integrated Development Environment.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Chapter 4: Do-It-Yourself Designing (Designing Interfaces)
Chapter 3: I Need a Tour Guide (Introduction to Visual Basic 2012)
Visual Basic.NET Windows Programming
Microsoft Visual Basic 2005 BASICS
Chapter 1: An Introduction to Visual Basic 2015
Visual Basic Code & No.: CS 218
Introduction to Computer CC111
Computer Software: Programming
Chapter Topics 15.1 Graphical User Interfaces
Event-driven programming
Chapter 8: Writing Graphical User Interfaces
1. Introduction to Visual Basic
Chapter 1: An Introduction to Visual Basic 2015
An Introduction to Visual Basic
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.
CIS16 Application Development Programming with Visual Basic
Building an Application in the Visual Basic .NET Environment
Chapter 15: GUI Applications & Event-Driven Programming
Tutorial 11 Using and Writing Visual Basic for Applications Code
Presentation transcript:

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 6. Properties

Beginning Visual Basic

BASIC B eginning B eginning A ll-Purpose A ll-Purpose S ymbolic S ymbolic I nstruction I nstruction C ode C ode

Event –Driven Language A user causes an event to occur when they do something on the form such as mouse clicking, typing, or checking a box. A user causes an event to occur when they do something on the form such as mouse clicking, typing, or checking a box. Event procedure – tells the computer in BASIC language what to do in response to an event. Event procedure – tells the computer in BASIC language what to do in response to an event.

Parts of A Visual Basic Project Project – includes all parts of the project Project – includes all parts of the project A.k.a. Application or program A.k.a. Application or program Form – the window where the interface between the user and the computer is created. Form – the window where the interface between the user and the computer is created. Controls – graphical features or tools that are placed on a form to allow user interaction. Controls – graphical features or tools that are placed on a form to allow user interaction.

Lets Begin Click Start Click Start Program Program Microsoft Visual Basic 6.0 Microsoft Visual Basic 6.0 New, Open New, Open

Design Mode – the mode used to build a project. May also be referred to as development mode. Design Mode – the mode used to build a project. May also be referred to as development mode. Form – the window where the programmer creates the interface between the user and the computer. Form – the window where the programmer creates the interface between the user and the computer. Interface – line of communication between the user of the program and the computer. Interface – line of communication between the user of the program and the computer.

Title BarMain Menu Tool Bar

Controls - tools or objects that are placed on forms to allow users to interaction such as text boxes, labels, scroll bars, or buttons. Controls - tools or objects that are placed on forms to allow users to interaction such as text boxes, labels, scroll bars, or buttons. Property – characteristic or value of an object (caption, color, size, font etc.) that can be set either using the Properties window at design time or by writing code statements during run – time. Property – characteristic or value of an object (caption, color, size, font etc.) that can be set either using the Properties window at design time or by writing code statements during run – time.

On Your Own Open your Beginning Visual Basic workbook to section 1-1. Open your Beginning Visual Basic workbook to section 1-1. Work independently through Lessons 1 and 2. Work independently through Lessons 1 and 2. Check out and take Quiz 1 and pass with 80% accuracy before continuing on to Lesson 3. Check out and take Quiz 1 and pass with 80% accuracy before continuing on to Lesson 3.