Understanding the Integrated Development Environment

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

VISUAL BASIC Visual Basic is derived from the Basic language (Beginner’s All-Purpose Symbolic Instruction Code) Visual Basic uses an event-driven programming.
Introducing More Controls Text boxCheck box Option button Command button frame image.
Slide 1 Forms v Parts of a form v Form: Program User Interface v Controls are contained inside forms v Control event handlers are contained inside forms.
Introduction to Computing Dr. Nadeem A Khan. Lecture 11.
Introduction to computers & Visual Basic School of Business Eastern Illinois University © Abdou Illia, Spring 2003 (Week 3, Monday 1/27/2003)
Introduction to Visual Basic What it is, and a simple program Mike Thelwall University of Wolverhampton, UK.
Computer Science 5 Spring 2007 Module 3 7/12/2015 1:55:57 PM7/12/2015 1:55:57 PM7/12/2015 1:55:57 PM.
Developing Software Applications Bob Hobbs
Visual Basic.net IDE. Integrated Development Environment.
Introduction to Visual Basic Chulantha Kulasekere.
1b – Inside Visual Studio Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Tutorial 11 Introduction to Visual Basic zLanguage developed for special-purpose Windows applications – 1991 zUses IDE – Integrated Development Environment.
An Introduction to Visual Basic
Appendices A - F A-F Exploring Microsoft Visual Basic 6.0 Copyright © 1999 Prentice-Hall, Inc. By Carlotta Eaton.
Lesson 6. GCSE Computing – programming languages Candidates should be able to:  describe common tools and facilities available in an integrated development.
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 2 - More Controls More controls – Text boxes - used for user input – Frames - containers to group items – check boxes - user select an option -
Enhancing the Graphical User Interface Multiple Forms, Controls, and Menus.
Basic Controls & Properties Chapter 2. Overview u VB-IDE u Basic Controls  Command Button  Label  Text Box  Picture Box u Program Editor  Setting.
Copyright © 2001 by Wiley. All rights reserved. Chapter 2: Using Visual Basic to Create a First Project Getting Started with VB Development Environment.
 Application – another name for a program.  Interface – is what appears on the screen when the application is running.  Program Code – is instructions.
§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 2 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.
Chapter Two Creating a First Project in Visual Basic.
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.
UnitII Visual basic Controls and toolbars. What is visual basic Visual Basic (VB) is an ideal programming language for developing sophisticated professional.
Integrated Development Environment Visual Basic IDE Slide 2 of 10 Topic & Structure of the lesson Introduction Integrated Development Environment Tool.
1 Visual Basic Part I - A tool for customizing your program Principles of GIS
By Dawid Wojtalewicz. In this PowerPoint I will show you how to use internet and what can you do in it.
Graphical User Interfaces Tonga Institute of Higher Education.
CMPF114 Computer Literacy Chapter 3 The Visual Basic Environment 1.
1 Introduction to Visual Basic Dr Mohd Nabil Almunawar MS 3403 Advanced Computing.
This is how you invoke the Microsoft Visual Studio 2010 Software. All Programs >> Microsoft Visual Studio 2010.
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.
Copyright © Don Kussee 1120-Ch2 #531 CNS 1120 Chapter 2 Project Structure and Tools 1120-Ch2.PPT.
Chapter 3 I Need a Tour Guide (Introduction to Visual Basic 2010) Clearly Visual Basic: Programming with Visual Basic nd Edition.
TOOLBOX. The Toolbox Intrinsic Controls - always included in the Toolbox ActiveX Controls - separate files with ocx file extension Insertable Objects.
Customizing Menus and Toolbars CHAPTER 12 Customizing Menus and Toolbars.
I am using Visual Basic 6 for this class. If you want to use a different version, please contact me. Thanks!
Chapter 3: I Need a Tour Guide (Introduction to Visual Basic 2012)
Project Structure and Tools 1120-Ch2.PPT
Object Orientated Programming using C#
Introduction to Computer CC111
Introduction to Computing
Introduction to Computing
1. Introduction to Visual Basic
How to design a Windows Forms application
VB 6.0.
User Forms.
Visual Basic Project Development Environment
IDE Visual Basic Uvod Nikola Vlahović.
Visual Basic.
Chapter 6 - Visual Basic Schneider
IDE Visual Basic Uvod Nikola Vlahović.
Horizontal Centering Using the menu bar
Hello World in Visual Basic
Visual Basic Project Development Environment
Визуалды бағдарламалау ортасы.
P.J.Balakumaran, AP, Commerce CA, SNMV CAS
Visual C# - GUI and controls - 1
Chapter 4 Enhancing the Graphical User Interface
Setting Properties of Objects
CHAPTER FOUR VARIABLES AND CONSTANTS
Chapter 4 Enhancing the Graphical User Interface
Presentation transcript:

Understanding the Integrated Development Environment 083000 Visual Basic IDE Understanding the Integrated Development Environment 083000

Main Features Menu bar Tool bar Tool box Form window Project window Form layout window Properties window

Hungarian Notation cbo Combo Box chk Check Box cmd Command Buttn dir Directory list bx fil File List box fra Frame frm Form grd Grid hsb Horiz. Scrollbar img Image lbl Label lin Line lst List box mnu Menu mod Module ole OLE opt Option button pic Picture Box res Resource shp Shape tmr Timer txt Text Box typ User-defined Data vsb Vert. Scroll Bar

Twips Twips are a smaller-than-pixel measurement.

Programming the controls Click once and draw control Or double click Click on the control once it is in the form window to gain focus Or double click to access the code Review the subroutines available for different controls.