ProgrammingLanguages Programming Languages Visual Basic Controls This lesson describes the VB Controls: VB has two types of Controls: Intrinsic Controls.

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

Developing Windows ® CE Applications With Visual Basic ® Larry Roof tonked
Working with Intrinsic Controls and ActiveX Controls
An Introduction to Visual Basic Terms & Concepts.
Information System Design Lab 5&6. User Interface Design.
What is a Dialog box? A Dialog box is a window or “form” that contains other child windows or “controls” that have a specific appearances and pre-defined.
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?) The.
Visual Basic Project Files:.VBP file: Project File: a small text file that contains the names of other files in the project, as well as some information.
Graphical User Interface (GUI) A GUI allows user to interact with a program visually. GUIs are built from GUI components. A GUI component is an object.
Introduction to computers & Visual Basic School of Business Eastern Illinois University © Abdou Illia, Spring 2003 (Week 3, Monday 1/27/2003)
VB Controls and Events Week 7: Picture Box, Image Box, Option, Check box, Mouse over, Frames, Shapes.
Introduction to Visual Basic What it is, and a simple program Mike Thelwall University of Wolverhampton, UK.
1 Introduction to the Visual Studio.NET IDE Powerpoint slides modified from Deitel & Deitel.
Visual Basic.net IDE. Integrated Development Environment.
Controls General Discussion. VB Controls Visual Basic Controls A control is the generic name for any object placed on a form Controls may be images,
1 ADVANCED MICROSOFT WORD Lesson 15 – Creating Forms and Working with Web Documents Microsoft Office 2003: Advanced.
Microsoft Visual Basic 2012 CHAPTER TWO Program and Graphical User Interface Design.
An Introduction to Visual Basic
Chapter 12: Using Controls. Examining the IDE’s Automatically Generated Code A new Windows Forms project has been started and given the name FormWithALabelAndAButton.
Appendices A - F A-F Exploring Microsoft Visual Basic 6.0 Copyright © 1999 Prentice-Hall, Inc. By Carlotta Eaton.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 13 – Graphical User Interfaces Part 2 Outline.
§Visual - A method used to create GUI applications. §BASIC - Beginner’s All - purpose Symbolic Instruction Code developed by John Kemeny. §VB- Evolved.
CHAPTER TWO INTRODUCTION TO VISUAL BASIC © Prepared By: Razif Razali 1.
CC111 Lec7 : Visual Basic 1 Visual Basic(1) Lecture 7.
Chapter 2 – Introduction to the Visual Studio .NET IDE
Visual Basic CDA College Limassol Campus Lecture:Pelekanou Olga Semester C Week - 1.
UnitII Visual basic Controls and toolbars. What is visual basic Visual Basic (VB) is an ideal programming language for developing sophisticated professional.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
Integrated Development Environment Visual Basic IDE Slide 2 of 10 Topic & Structure of the lesson Introduction Integrated Development Environment Tool.
Lesson 14: Exploring Excel Learning Objectives After studying this lesson, you will be able to:  Explain ways Excel can help your productivity.
1 Visual Basic Part I - A tool for customizing your program Principles of GIS
Excel Screen Software Applications. Microsoft office button Quick Access Toolbar Band of tabs Formula bar Name box Sheet tabs Status bar View buttons.
Software applications Jada Brentley Period 3 Microsoft office buttonQuick access toolbar Band of tabs Formula bar Name Box Sheet tabs Status bar View.
OV Copyright © 2007 Element K Content LLC. All rights reserved. Exploring the Word Environment  Explore the User Interface  Work with the Ribbon.
CMPF114 Computer Literacy Chapter 3 The Visual Basic Environment 1.
Controls. Common properties Height – Height of the control Left – Left of the control Width – width of a control Top - From the screen top Font – Foreground.
1 Introduction to Visual Basic Dr Mohd Nabil Almunawar MS 3403 Advanced Computing.
INFORMATION SYSTEM – SOFTWARE TOPIC: GRAPHICAL USER INTERFACE.
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.
VB 4 Controls Scrollbar Radio button check box listboxes timers control arrays.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
Office 2003 Introductory Concepts and Techniques M i c r o s o f t Word Project 1 Creating and Editing a Word Document.
TOOLBOX. The Toolbox Intrinsic Controls - always included in the Toolbox ActiveX Controls - separate files with ocx file extension Insertable Objects.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
 2002 Prentice Hall. All rights reserved. 1 Introduction to the Visual Studio.NET IDE Outline Introduction Visual Studio.NET Integrated Development Environment.
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”
Visual Basic .NET BASICS
Object Orientated Programming using C#
Microsoft Visual Basic 2005 BASICS
Introduction to Computer CC111
Chapter Topics 15.1 Graphical User Interfaces
Introduction to Computing
Chapter 2 – Introduction to the Visual Studio .NET IDE
3.01 Apply Controls Associated With Visual Studio Form
1. Introduction to Visual Basic
3.01 Apply Controls Associated With Visual Studio Form
An Introduction to Visual Basic
VB 6.0.
Program and Graphical User Interface Design
Visual Basic Project Development Environment
Visual Basic.
Визуалды бағдарламалау ортасы.
P.J.Balakumaran, AP, Commerce CA, SNMV CAS
Visual Studio.
Chapter 15: GUI Applications & Event-Driven Programming
Visual C# - GUI and controls - 1
3.Visual Basic Controls.
Chapter 4 Enhancing the Graphical User Interface
Chapter 4 Enhancing the Graphical User Interface
Changing the appearance of paragraphs in word (part #1 of 3)
Presentation transcript:

ProgrammingLanguages Programming Languages

Visual Basic Controls This lesson describes the VB Controls: VB has two types of Controls: Intrinsic Controls and Active Controls. These controls represent all the Graphics User Interfaces, as well as Operating Systems resources, available to programmers.

There are 20 controls which are built in to VB.There are 20 controls which are built in to VB. Intrinsic Controls These controls are called intrinsic controls.These controls are called intrinsic controls. Every one of the intrinsic controls are available to every VB program you write.Every one of the intrinsic controls are available to every VB program you write. When you create a "New" VB project, all 20 of the intrinsic controls will show up in the Toolbox.When you create a "New" VB project, all 20 of the intrinsic controls will show up in the Toolbox.

The following list shows the 20 intrinsic controlsThe following list shows the 20 intrinsic controls Intrinsic Control List

The following list shows the 20 intrinsic controlsThe following list shows the 20 intrinsic controls Intrinsic Control List (2) Command Button ImageBox CheckBox PictureBox TextBox ListBox Label ComboListBox Option Button FrameCommand Button ImageBox CheckBox PictureBox TextBox ListBox Label ComboListBox Option Button Frame ADO Data Control Vertical Scroll DirListBox Line DriveListBox Shape FileListBox OLEContainer Timer Horizontal ScrollADO Data Control Vertical Scroll DirListBox Line DriveListBox Shape FileListBox OLEContainer Timer Horizontal Scroll

Sample ActiveX Control List

The following list shows the 20 intrinsic controlsThe following list shows the 20 intrinsic controls Sample ActiveX Control List(2) Toolbar Progress Bar Tabbed Dialog Internet Transfer Control Tab Strip ListView control Multimedia control ImageListToolbar Progress Bar Tabbed Dialog Internet Transfer Control Tab Strip ListView control Multimedia control ImageList Data Repeater SysInfo MAPI Winsock Animation MonthView DateTimePicker PictureClip FlatScrollBar Slider ImageComboData Repeater SysInfo MAPI Winsock Animation MonthView DateTimePicker PictureClip FlatScrollBar Slider ImageCombo

Color Common Dialog Window The whole point of a visual language is to make certain parts of programmingThe whole point of a visual language is to make certain parts of programming (usually the user interface) much easier on the programmer.(usually the user interface) much easier on the programmer.

Open Common Dialog Window This is the user interface created by Common Dialog Control for file-open.This is the user interface created by Common Dialog Control for file-open.

Font Common Dialog Window This is the user interface created by Common Dialog Control for Font selection.This is the user interface created by Common Dialog Control for Font selection.