Visual Programming Dr /Usama Abo Zaid PREPARED BY / MOSTAFA MOHAMED MOSTAFA.

Slides:



Advertisements
Similar presentations
Information System Design Lab 5&6. User Interface Design.
Advertisements

1 Microsoft Access 2002 Tutorial 9 – Automating Tasks With Macros.
Microsoft Visual Basic: Reloaded Chapter Seven More on the Repetition Structure.
© by Pearson Education, Inc. All Rights Reserved.
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
Visual Basic 2010 How to Program Reference: Instructor: Maysoon Bin Duwais slides Visual Basic 2010 how to program by Deitel © by Pearson Education,
IS 1181 IS 118 Introduction to Development Tools VB Chapter 03.
C# Programming: From Problem Analysis to Program Design1 Programming Based on Events C# Programming: From Problem Analysis to Program Design 3 rd Edition.
Chapter 13: Advanced GUI and Graphics
BİL528 – Bilgisayar Programlama II Advanced Controls, Menus, Toolbars, and Status Bars 1.
WORKING WITH MACROS CHAPTER 10 WORKING WITH MACROS.
1 Advanced Frame Options Using NORESIZE  By default, users may resize frames unless you specify the NORESIZE attribute in the tag  Examples:
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Introducing Web Controls Outline 29.1 Analyzing the.
Microsoft Visual Basic 2008 CHAPTER ELEVEN Multiple Classes and Inheritance.
Multiple Forms, Container Controls, AddHandler This presentation is based on the Forms and ContainerControls VB Projects 1.
Adding User Interactivity – Lesson 51 Adding User Interactivity Lesson 5.
1 1 Lab1 Ismail M. Romi – IT Dept, PPU, Visual Basic 2005 Programming Tour.
Visual Basic 101.
Chapter 8: Writing Graphical User Interfaces Visual Basic.NET Programming: From Problem Analysis to Program Design.
Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Seven More on the Repetition Structure.
Domain 3 Understanding the Adobe Dreamweaver CS5 Interface.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 13 – Graphical User Interfaces Part 2 Outline.
Graphical User Interface Concepts - Part 2 Session 09 Mata kuliah: M0874 – Programming II Tahun: 2010.
Chapter One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
Program Design and Coding
Microsoft Visual Basic 2012 CHAPTER THREE Program Design and Coding.
Microsoft Visual Basic 2010 CHAPTER THREE Program Design and Coding.
Graphical User Interfaces 2 Tonga Institute of Higher Education.
Dreamweaver MX. 2 Overview of Templates n Forms enable you to collect data from ______. n A form contains ________ such as text fields, radio buttons,
4 Chapter Four Introduction to HTML. 4 Chapter Objectives Learn basic HTML commands Discover how to display graphic image objects in Web pages Create.
Creating Graphical User Interfaces (GUI’s) with MATLAB By Jeffrey A. Webb OSU Gateway Coalition Member.
ITEC 109 Lecture 27 GUI. GUIs Review Sounds –Arrays hold sample values –Creating a keyboard –Sound effects Homework 3 –The big two –Due after break –Lab.
Visual C# 2012 How to Program © by Pearson Education, Inc. All Rights Reserved.
Object-Oriented Application Development Using VB.NET 1 Chapter 10 VB.NET GUI Components Overview.
Copyright (c) 2003 by Prentice Hall Provided By: Qasim Al- ajmi Chapter 3 Some Visual Basic Controls and Events Visual Basic. NET.
Graphical User Interfaces Part 2 1 Outline TreeViews ListViews Tab Control.
DB Implementation: MS Access Forms. MS Access Forms: Purpose Data entry, editing, & viewing data in Tables Forms are user-friendlier to end-users than.
Dive Into® Visual Basic 2010 Express
Chapter 3: I Need a Tour Guide (Introduction to Visual Basic 2012)
JavaScript, Sixth Edition
Chapter 5 Validating Form Data with JavaScript
Graphical User Interface
Java FX: Scene Builder.
Common Features Using the Common Features of Microsoft® Office 2010
Creating an ERD in SQL Server
Chapter 1: An Introduction to Visual Basic 2015
Chapter Topics 15.1 Graphical User Interfaces
Chapter 8: Writing Graphical User Interfaces
Multiple Classes and Inheritance
Chapter 3 Working With Unity
Chapter 1: An Introduction to Visual Basic 2015
The new home screen in BOXI 4.2, tabs and preferences
Getting Started with Dreamweaver
Pacific Publishing User Training
Chap 7. Building Java Graphical User Interfaces
DB Implementation: MS Access Forms
Graphical User Interfaces -- Introduction
Layouts AKEEL AHMED.
Microsoft Office Access 2003
Creating Graphical User Interfaces
Microsoft Office Access 2003
Chapter III Animations, Transitions, Spell Check, Outline Tab, Slides Tab, Sorter View, and Printing Saturday, November 24, 2018Saturday, November 24,
Creating Database Reports
DB Implementation: MS Access Forms
CIS 16 Application Development Programming with Visual Basic
Lecture Set 10 Windows Controls and Forms
Fonts, TabControl, ListBox
Background Prepared by: Mr. Mahmoud Rafeek Alfarra.
Chapter 15: GUI Applications & Event-Driven Programming
Visual C# - GUI and controls - 1
Presentation transcript:

Visual Programming Dr /Usama Abo Zaid PREPARED BY / MOSTAFA MOHAMED MOSTAFA

Chapter 4 Graphical User Interfaces (GUI) with Windows Forms

 Tab control control enables you to specify more information in he same space on a form and group displayed data logically.  TabControls contain TabPages that are similar to panels and Groubox. TabControl Control

 You can add controls in the tabpages.  Write, myTapPageName.Controls.Add(theControl);  You can add controls in theTabControl.  Write myTabControl.Controls.Add(theTabPage); The initial page appears by default

TabControl Control Tab control Tab pages controls

Only One page is displayed at a time. In TabControl tabpages appear in order,the first tabpage then the second and the third,this is default. TABS TabControl tabpages

To change the initial TabPage Write, TabControlname.SelectedTab(index);

Tap control properties and events Tab control properties and an eventDescription ImageListSpecifies images to be displayed on Tabs. ItemSizeSpecifies the tab size. multilineIndicates whether multiple rows of tabs can be displayed. selectedIndexIndex of the selected PageTab. selectedTabThe selected TabPage.

Tap control properties and events Tab control properties and an eventDescription TabCountReturns the numbers of TabPages. TabPagesReturn the collection ofTabPages within the TabControl. As s Tabcontrol.TapPageCollection. Common Events SelectedIndexChangedGenerated when selectedIndex Changes

TabControl Control  In page 125 practical example with figure in page 127.

THANKS with best wishes for success MOSTAFA MOHAMED MOSTAFA