Lecture Set 10 Windows Controls and Forms

Slides:



Advertisements
Similar presentations
Microsoft Expression Web-Illustrated Unit J: Creating Forms.
Advertisements

Automating Tasks With Macros
Using the Visual Basic Editor Visual Basic for Applications 1.
It is not necessary to login to use the card catalog, but extra features are available when you are logged in. It is the same user name and password as.
Microsoft Access 2013 Simplify Data Entry with Forms Chapter 3.
Chapter One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
Google HOW DO I SUBMIT MY ASSIGNMENT?. To join a classroom, your teacher will give you a code.
Teacher Functions. Teacher Functions in OAS Create Tests Assign Tests to a Class View Reports of Student Performance.
How to Log your Non-Profit Board Participation. Logging Board Participation Hours There area two steps to recording your Board Participation hours. 1.Add.
Using Find, Replace, Go To In Microsoft Word By Krysia Biville.
Type in: destiny.usd259.netdestiny.usd259.net Click on the library page tab.
How to Create a Storybird Book. Go to Click on the signup button at the top right hand corner Create your Storybird.
Perform a complete mail merge Lesson 14 By the end of this lesson you will be able to complete the following: Use the Mail Merge Wizard to perform a basic.
Mail Merge Introduction to Word Processing ITSW 1401 Instructor: Glenda H. Easter Introduction to Word Processing ITSW 1401 Instructor: Glenda H. Easter.
PowerPoint Adding Hyperlinks and Hiding Slides Learn to Link to websites and other slides in the presentation! Adding Hyperlinks and Hiding Slides Learn.
Chapter 8 Multiple Forms, Modules, and Menus. Introduction This chapter demonstrates how to: – Add multiple forms to a project – Create a module to hold.
From the main PGCC Web page, select "Faculty & Staff"
Dive Into® Visual Basic 2010 Express
SAP ERP Basic System Navigation
PowerPoint Essentials Vocabulary
Microsoft Access 2016 Simplify Data Entry with Forms
Setting up Categories, Grading Preferences and Entering Grades
Creating, formatting, and editing graphs using Google Sheets
Chapter 1: An Introduction to Visual Basic 2015
About SharePoint Server 2007 My Sites
CONTENT MANAGEMENT SYSTEM CSIR-NISCAIR, New Delhi
Microsoft Word 2010.
Multi-Collab View (MCV) Page
Software Quality Assurance
3.01 Apply Controls Associated With Visual Studio Form
How to design a Windows Forms application
Fastest way for already created documents
3.01 Apply Controls Associated With Visual Studio Form
Microsoft Windows XP Inside Out Second Edition
Access Project 8 Using Visual Basic for Applications (VBA) and Creating Multi-Page Forms.
Differences Between Word 2003 to 2007
This I Believe You may follow these instructions at your own pace. Please consult this packet first before asking for teacher assistance.
Word and the Writing Process
Microsoft Excel 101.
Programming Logic Alice.
Indent markers In some cases, you may want to have more control over indents. Word provides indent markers that allow you to indent paragraphs to.
Simplify Data Entry with Forms Chapter 3
Collaboration with Google Docs
Microsoft Windows 2000 Professional
Exploring the Basics of Windows XP
Microsoft Word Reviewing Documents.
Microsoft Project 2007 Demo Part 3
Teacher Functions.
Microsoft Windows 2000 Professional
Microsoft Office Access 2003
Lesson 21 Getting Started with PowerPoint Essentials
Microsoft Office Access 2003
Assistant lecturer Nisreen A. Jabr
How to complete a Referral Form via “Student” tab
MicroSoft Word 2007 The purpose of this PowerPoint presentation is to show you some of the major differences in Word 2007 from the version we had here.
Windows xp PART 1 DR.WAFAA SHRIEF.
Bad Payment System This presentation will teach users how to use the new Bad Payment System in Client Environments.
Exploring the Basics of Windows XP
SAMPLE PRESENTATION Company Name presents PowerPoint Basics
Benchmark Series Microsoft Word 2016 Level 2
Exploring the Basics of Microsoft Windows 7
Important Resources These resources will help you be successful in US History Class. Please complete the activities on this sheet, check off the statements.
Software Quality Assurance
Format a One-Page Report: 6.1 project 1 through 6.1 project 3
Object-Oriented Programming: Inheritance and Polymorphism
Doctoral Coordinators: Committee Review
7 Creating Claims.
Point of Rental Training
Presentation transcript:

Lecture Set 10 Windows Controls and Forms Part B – Radio Buttons, Check Boxes, and Group Controls

Objectives Understand how radio buttons, check boxes, and group boxes function To be able to design and code a form using any of the controls introduced to date. Given a form with two or more controls, set the tab order of the controls Review information about multi-form projects There is not much new in here that you don’t already know – so you may want to skip these slides

Group Boxes Used to group controls together Sometimes affects the behavior of the controls Sometime used for clarity of the form and code related to the form Group is shown on the form A name may be associated with the group and is displayed in upper left corner of the box All group controls move with the group box Group boxes cannot be dragged over controls Controls must be dragged or entered into the group box

Radio Buttons and Check Boxes Radio buttons in a group are mutually exclusive If you select one button all the others are turned off Check boxes operate independently When a user selects a check box it has no impact on the other boxes

Sample Form with Five Control Types

Common Members of Radio Buttons and Check Box Controls These controls are specializations of the same parent control ( ) and therefore have some common and some distinguishing members 9/21/2019 5:21 AM

Code that Manipulates Radio Button and Check Box Controls 9/21/2019 5:21 AM

Tab Order in a Form When you display a form in Tab Order view you see the tab order values as assigned to each control The next slide shows what this looks like The slide after shows how to change tab order Note that the tab order for labels normally is irrelevant as labels never get focus 9/21/2019 5:21 AM

Form in Tab Order View 9/21/2019 5:21 AM

9/21/2019 5:21 AM

Getting Information About Controls There are more than 60 different controls provided by Windows 2005 Most of what you will learn about these controls you will learn on your own The book provides some information I don’t provide much (I don’t know much) So you are often on your own Exam question – How do you find out what you need to know? Use Microsoft Help? 9/21/2019 5:21 AM

Getting help from Microsoft There is a better way GOOGLE IT!!!!! But if you must use Microsoft – use the Index Command in the Help menu to find what your looking for (if you can narrow down and spell what you are looking for) Extra! Extra! Read all about it!!! Well – you’re too young to remember this, 9/21/2019 5:21 AM

Adding a New Form to a Project 9/21/2019 5:21 AM

9/21/2019 5:21 AM

Changing the Start-up Form Use the Application page of the Project Designer to change the Start-up Form Double click on the Project on My Project and then on the Application Tab 9/21/2019 5:21 AM

Displaying a Form as a Dialog Box A form displayed as a dialog box is also called a modal form The Payment Form in the next slide is a modal form The Payment Form is displayed when the user clicks on the Select Payment button (sorry – not shown) on the Customer Form This assumes there is such a button and That you wrote the code to display the modal form

9/21/2019 5:21 AM

A Modal Form When you create a form as a dialog box, you do so via the settings shown on the next slide  As shown in the next slide , you first use the New keyword to create an instance of the Form Then you call the ShowDialog method of the When you use this method to display a form, the user has to respond to the dialog box before the code that follows the ShowDialog call can execute

9/21/2019 5:21 AM