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.

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.
Designing a Graphical User Interface (GUI) 10 IST – Topic 6.
An Introduction to Visual Basic Terms & Concepts.
VISUAL BASIC Visual Basic is derived from the Basic language (Beginner’s All-Purpose Symbolic Instruction Code) Visual Basic uses an event-driven programming.
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.
Forms and Screen Design What is a form? A layout on screen which allows users to make choices, enter data or view data. They are found in: PC applications.
Creating Custom Forms. 2 Design and create a custom form You can create a custom form by modifying an existing form or creating a new form. Either way,
Flowchart Start Input weight and height
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-
ISP 121 Week 3 Access Forms and Reports. Displaying Data – The Form One way to start a form is to use the Form Wizard What table or query are you creating.
 2002 Prentice Hall. All rights reserved. Chapter 2 - Introduction to the Visual Studio.NET IDE Outline 2.1Introduction 2.2Overview of the Visual Studio.NET.
Introduction to Computing Dr. Nadeem A Khan. Lecture 11.
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 Chapter 1 Mr. Wangler.
Tutorial 6 Using Form Tools and Creating Custom Forms
An Introduction to Visual Basic
IE 411/511: Visual Programming for Industrial Applications
© 2006 Lawrenceville Press Slide 1 Chapter 3 Visual Basic Interface.
Teacher: Ms. Olifer MICROSOFT VISUAL STUDIO 2010: PROPERTIES OF WINDOWS FORM OBJECT.
ACCESS Part 2. OBJECTIVES  Use the Form Wizard  Create a split form  Use Form Layout View  Add fields to a form  Modify form controls  Create calculations.
Visual Basic Starter Vocabulary. IDE Integrated Development Environment A setting in which programs are written, tested, debugged, etc. You could write.
Clearly Visual Basic: Programming with Visual Basic 2008
Chapter 8: Writing Graphical User Interfaces Visual Basic.NET Programming: From Problem Analysis to Program Design.
Basic Controls & Properties Chapter 2. Overview u VB-IDE u Basic Controls  Command Button  Label  Text Box  Picture Box u Program Editor  Setting.
Lecture 5(b), Slide 1 CP2030 Copyright © University of Wolverhampton CP2030 Visual Basic for C++ Programmers v Component 5(b) HCI aspects of VB programming.
 Application – another name for a program.  Interface – is what appears on the screen when the application is running.  Program Code – is instructions.
Outline Software and Programming Program Structure Tools for Designing Software Programming Languages Introduction to Visual Basic (VBA)
§Visual - A method used to create GUI applications. §BASIC - Beginner’s All - purpose Symbolic Instruction Code developed by John Kemeny. §VB- Evolved.
Graphical User Interfaces Tonga Institute of Higher Education.
CHAPTER TWO INTRODUCTION TO VISUAL BASIC © Prepared By: Razif Razali 1.
Visual Basic.net Textbox & Label Controls. Textbox Naming convention (txt) Primary use (user input) Can except numeric and character values.
How to get started with Excel VBA. We need to enable programming in Excel  the “Developer menu”
CC111 Lec7 : Visual Basic 1 Visual Basic(1) Lecture 7.
Data Types and Variables. Data Type! Computers are all about Data! Data can be in the form of Text Dates Sounds Pictures.
Standard Grade Programming using VB 1 Programming 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.
Vocabulary in VB So Far. Assignment: Used to change the value of an object at run time Used to change the value of an object at run time.
Visual Basic Programming Introduction VB is one of the High level language VB has evolved from the BASIC language. BASIC stands for Beginners All-purpose.
VB Objects & Events (Exercises) School of Business Eastern Illinois University © Abdou Illia, Spring 2003 (Week 3, Friday 1/31/2003)
1 Visual Basic Part I - A tool for customizing your program Principles of GIS
COMPUTER PROGRAMMING I 3.02 Apply Properties Associated with the Controls.
VAT Calculator program Controls Properties Code Results.
CMPF114 Computer Literacy Chapter 3 The Visual Basic Environment 1.
1 Introduction to Visual Basic Dr Mohd Nabil Almunawar MS 3403 Advanced Computing.
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.
IMS 3253: Controls 1 Dr. Lawrence West, MIS Dept., University of Central Florida Topics Check Boxes Radio Buttons Date Time Picker Masked.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 6 1 Microsoft Office Access 2003 Tutorial 6 – Creating Custom Forms.
IE 411/511: Visual Programming for Industrial Applications Lecture Notes #2 Introduction to the Visual Basic Express 2010 Integrated Development Environment.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Visual Basic/ Visual Studio Brandon Large. Connecting to prior knowledge In your notes write down what the two main parts of the computer are. The “software”
COMPUTER PROGRAMMING I Apply Procedures to Develop List Box and Combo Box Objects.
Chapter 4: Do-It-Yourself Designing (Designing Interfaces)
Visual Basic.NET Windows Programming
Introduction to Computer CC111
Chapter 8: Writing Graphical User Interfaces
Introduction to Computing
1. Introduction to Visual Basic
An Introduction to Visual Basic
Please use speaker notes for additional information!
Visual Basic Properties, Methods and Events
Simple Windows Applications
Визуалды бағдарламалау ортасы.
FIRST Team 20 – The Rocketeers
Visual C# - GUI and controls - 1
2b – Labels and Pictures Lingma Acheson CSCI N331 VB .NET Programming
CHAPTER FOUR VARIABLES AND CONSTANTS
Presentation transcript:

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 world through many perspectives “An open mind: It’s a good thing” ~Martha Stewart

Object Oriented Programming Deals with data in terms of objects, each object with its own features, properties, and functions Opposite of OOP is Procedural programming, which is more simple on a small scale, but impossible to organize on a large scale!

Starting off with VB – some basic objects What is a form? –A container for objects What is a button? –An object that you click on What is a label? –An object that contains text

Properties of Objects Every object, whether a real one or an information one, has properties about it Some properties of a basketball: size, colour, indoor or outdoor, bounciness. Some properties in VB: –Caption –Name –Visibility –Font

Properties of Objects These are examples of some other objects in VB: –List boxes –Menus –Graphics –Timers –Combo Boxes –Radio buttons

Properties of Objects The properties of objects can be set by you, and even changed by the program imgSweetPic.Visible = False This will make the picture called imgSweetPic invisible Use the “dot notation” to set properties: –nameOfObject. property = value

Hello World Application Create a program that will display your greetings to any user that uses your program –Follow instructions in Review 2, pg 3-6 to 3-7 Read sections 3.9 to 3.16, doing reviews along the way. (Reviews 3,4,5 an 6)