3.Visual Basic Controls.

Slides:



Advertisements
Similar presentations
Pemrograman VisualMinggu …8… Page 1 MINGGU Ke Delapan Pemrograman Visual Pokok Bahasan: Graphical User Interface Tujuan Instruksional Khusus: Mahasiswa.
Advertisements

Chapter 3.1 Controls Programming In Visual Basic.NET.
CHAPTER TWO Creating Simple Visual Basic.NET Windows Applications.
1 Lab6 Lab6 ComboBox Control Properties, Methods and Events.
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.
Programming Lecture #2 CS 101 Autumn 2007 Tariq Jadoon.
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.
Group Boxes and Panels Arrange components on a GUI Buttons and etc. can be placed inside a group box or panel. All these buttons move together when the.
VB Controls and Events Week 7: Picture Box, Image Box, Option, Check box, Mouse over, Frames, Shapes.
Introduction to Computing Dr. Nadeem A Khan. Lecture 13.
Copyright 2003 : Ismail M.Romi, PPU. All Rights Reserved 1 Lab2 Managing Controls.
110-C1 Chapter 2 of the text: _ text boxes, group boxes, check boxes, radio buttons, picture boxes _ defining access keys tab sequence setting the focus.
0 iTools View Builder 2 iTools - View Builder You will also need to have a simulation 3216 running in iTools to link to later.
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,
BIM313 – Advanced Programming Simple Controls 1. Contents Traditional Controls – Labels, Text Boxes, Buttons, Check Boxes, List Boxes, Combo Boxes Advanced.
Lab 9 – User Forms Design. User Forms What are user forms? –Known as dialog boxes –Major ways for getting user input An example of using user forms: Monthly.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Introducing Web Controls Outline 29.1 Analyzing the.
CSCI 3327 Visual Basic Chapter 10: Windows Forms GUI: A Deeper Look UTPA – Fall 2011.
CSCI 3328 Object Oriented Programming in C# Chapter 2: Introduction to Visual C# Programming 1 Xiang Lian The University of Texas Rio Grande Valley Edinburg,
CIS 115 Lecture 3.  Forms  Form properties  Controls  Control properties  Event Driven Programming  Form Events  Control Events  Event Handlers.
CHAPTER TWO Creating Simple Visual Basic.NET Windows Applications.
1 Web-Enabled Decision Support Systems Windows Forms and Controls Prof. Name Position (123) University Name.
CSC 298 Windows Forms.
Chapter 12: Using Controls. Examining the IDE’s Automatically Generated Code A new Windows Forms project has been started and given the name FormWithALabelAndAButton.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Assignment #1 Advanced Computer Programming.
CIS 338: VB.NET Components Dr. Ralph D. Westfall April, 2011.
ListBox, ComboBox, Menu Chapter 5.4, ComboBox Control: Properties & Methods u Combines TextBox features with a short drop- down list  cboOne.AddItem(string)
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 12 - Graphical User Interface Concepts: Part.
Graphical User Interfaces 2 Tonga Institute of Higher Education.
1. S:\Courses\CSSE\ibrahima\CS2340\Notes Folder Section1 Folder Section2 2.
CHAPTER TWO Creating Simple Visual Basic.NET Windows Applications.
IS437: Spring 2006 Instructor: Dr. Boris Jukic Controls.
Controls. Adding Controls to Form -You can pick controls from the toolbox. -To add the controls from Toolbox to the Form You have be in design view. -To.
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.
SEEM3460 Tutorial GUI in Java. Some Basic GUI Terms Component (Control in some languages) the basic GUI unit something visible something that user can.
You should unzip and download the beginning programs.
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
Controls Part 2. DateTimePicker Control Used for representing Date/Time information and take it as input from user. Date information is automatically.
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.
Chapter 2 More Controls Programming in C#. NET Objectives Use text boxes, group boxes, check boxes, radio buttons, and picture boxes effectively.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
Using Option Buttons. Option Buttons Are similar to checkboxes. Must appear in groups. Only one button in the group can be selected at a time. Sometimes.
ProgrammingLanguages Programming Languages Visual Basic Controls This lesson describes the VB Controls: VB has two types of Controls: Intrinsic Controls.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
THE MOUSE Left Click THE MOUSE Right Click.
CSCI 3328 Object Oriented Programming in C# Chapter 2: Introduction to Visual C# Programming UTPA – Fall 2012 This set of slides is revised from lecture.
Introduction to Computing
3.01 Apply Controls Associated With Visual Studio Form
3.01 Apply Controls Associated With Visual Studio Form
VB 6.0.
Please use speaker notes for additional information!
الاسباب الأضرار وسائل الحمايه
Visual programming Chapter 3: GUI (Graphical User Interface) Part I
Visual Basic Properties, Methods and Events
مراحل كتابة البرنامج بلغة فيجول بيسك ستديو
Module 2 إنشاء تطبيقات الويندوز
Visual Basic Objects Controls
Visual Basic Objects Controls
Визуалды бағдарламалау ортасы.
P.J.Balakumaran, AP, Commerce CA, SNMV CAS
Visual Basic: Week 5 Review User defined functions
Mice, Lists, Timers, Arrays
OptionButton, CheckBox компоненттері
Visual C# - GUI and controls - 1
Programming In Visual Basic.NET
Custom Forms with VBA in Excel In-Class Exercise #11
Presentation transcript:

3.Visual Basic Controls

Label Control Properties:- Events:- Methods:- refresh ,move,zorder Name Appearance Backcolor Forecolor Caption Enabled Visible Font ToolTipText Tag TabIndex Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods:- refresh ,move,zorder

Command Button Control Properties:- Name Appearance Backcolor Caption Enabled Visible Font Picture toolTipText Tabstop tabIndex Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods refresh ,move,zorder

TextBox Control Properties:- Events:- Methods:- refresh ,move,zorder Name Text Appearance Backcolor Forecolor Enabled Visible Passwordchar Font toolTipText Locked Multiline Tabstop tabIndex Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods:- refresh ,move,zorder

Option Button Control Properties:- Events:- Methods Name Appearance Backcolor Forecolor Caption Enabled Visible Value Picture Font ToolTipText Tag TabIndex Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods

checkBox Control Properties:- Events:- Methods Name Appearance Backcolor Forecolor Caption Enabled Visible Value Picture Font ToolTipText Tag TabIndex Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods

ListBox Control Properties:- Events:- Methods Name Appearance Backcolor Forecolor Sorted Enabled Visible List Multiselect Font ToolTipText Tag TabIndex Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods

ComboBox Control Properties:- Events:- Methods Name Appearance Backcolor Forecolor Enabled Visible List Text Font ToolTipText Tag TabIndex Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods

Image Control Properties:- Events:- Methods Name Appearance Enabled Visible Height Left Top width Picture ToolTipText Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods

Picture Control Properties:- Events:- Methods Name Appearance Backcolor Font Enabled Visible Height Left Top width Picture ToolTipText Tabindex Tabstop Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods

HscrollBar Method Properties:- Events:- Name Enabled Visible Height Left Top width Max Min Value Tabindex Tabstop Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup Method

VscrollBar Methoda Properties:- Events:- Name Enabled Visible Height Left Top width Max Min Value Tabindex Tabstop Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup Methoda

Timer Methoda Properties:- Events:- Name Enabled Interval Left Tag Top Index Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup Methoda

DriveListBox Properties:- Events:- Methods Name Appearance Backcolor Font Enabled Visible Height Left Top width Picture ToolTipText Tabindex Tabstop Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods

DirListBox Properties:- Events:- Methods Name Appearance Backcolor Font Enabled Visible Height Left Top width Picture ToolTipText Tabindex Tabstop Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods

FileListBox Properties:- Events:- Methods Name Appearance Backcolor Font Enabled Visible Height Left Top width Picture ToolTipText Tabindex Tabstop Events:- Click, Gotfocus, Lostfocus, Keypress, Keyup, Mousedown, mouseup, Mouse move. Methods