1 Prototyping for HCI Spring 2004 (Week 10) Jorge A. Toro.

Slides:



Advertisements
Similar presentations
CS0004: Introduction to Programming Visual Studio 2010 and Controls.
Advertisements

First Second first second first second.
1 Microsoft Access 2002 Tutorial 6 – Creating Custom Reports.
Creating Custom Reports. 2 Design and create a custom report You can easily create custom reports based on a table or query. There are seven sections.
LSP 121 Access Forms, Reports, and Switchboard. Access Forms.
© by Pearson Education, Inc. All Rights Reserved.
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
© by Pearson Education, Inc. All Rights Reserved. continued …
Visual Basic 2010 How to Program Reference: Instructor: Maysoon Bin Duwais slides Visual Basic 2010 how to program by Deitel © by Pearson Education,
 2006 Pearson Education, Inc. All rights reserved Introduction to the Visual C# 2005 Express Edition IDE.
1 Prototyping for HCI Spring 2004 (Week 9) Jorge A. Toro.
Automating Tasks With Macros
1 Prototyping for HCI Spring 2004 (Week 7) Jorge A. Toro.
Creating Custom Forms. 2 Design and create a custom form You can create a custom form by modifying an existing form or creating a new form. Either way,
Compunet Corporation Programming with Visual Studio.NET GUI Week 13 Tariq Aziz and Kevin Jones.
LSP 121 Access Forms, Reports, and Switchboard. Overview You’ve learned several of the basic nuts-and-bolts of creating a database, entering data, and.
ISP 121 Week 3 Access Forms and Reports. Displaying Data – The Form One way to start a form is to use the Form Wizard What table or query are you creating.
Automating Tasks With Macros. 2 Design a switchboard and dialog box for a graphical user interface Database developers interact directly with Access.
1 Prototyping for HCI Spring 2004 (Week 8) Jorge A. Toro.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
Section 6.1 Geometric Mean and Simplifying Radicals.
2. Introduction to the Visual Studio.NET IDE 2. Introduction to the Visual Studio.NET IDE Ch2 – Deitel’s Book.
Tutorial: Introduction to ASP.NET Internet Technologies and Web Application 4 th February 2010.
Tutorial 5 Making a Document Interactive. XP Objectives Explore the different button states Add a button from the Buttons library Edit a button instance.
Introduction to Visual Basic. Quick Links Windows Application Programming Event-Driven Application Becoming familiar with VB Control Objects Saving and.
IE 411/511: Visual Programming for Industrial Applications
Menus,MonthCalender, DateTimePicker, MDI,Tree View, List View,
BIM211 – Visual Programming Objects, Collections, and Events 1.
Intro to MFC. Open VS and create new project 1)Open MS Visual Studio 2008 Professional (It must be the Professional Edition, the Express Edition will.
ACCESS Part 2. OBJECTIVES  Use the Form Wizard  Create a split form  Use Form Layout View  Add fields to a form  Modify form controls  Create calculations.
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.
Introduction to the Visual Studio.NET IDE (LAB 1 )
Pasewark & Pasewark 1 Access Lesson 5 Creating and Modifying Reports Microsoft Office 2007: Introductory.
In order to add or subtract radicals: All radicals must be simplified. Then, you combine “like” terms. Square-root expressions with the same radicand.
Introduction to Enterprise Guide Jennifer Schmidt Rhonda Ellis Cassandra Hall.
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
1 Creating Windows GUIs with Visual Studio. 2 Creating the Project New Project Visual C++ Projects Windows Forms Application Give the Project a Name and.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
What is Visual Basic.NET? 110 B-1 e.g. a word processor doesn’t do anything until the user clicks on a button, types text... A programming language that.
Visual Basic CDA College Limassol Campus Lecture:Pelekanou Olga Semester C Week - 1.
XP New Perspectives on Microsoft Office Access 2003 Tutorial 10 1 Microsoft Office Access 2003 Tutorial 10 – Automating Tasks With Macros.
Pasewark & Pasewark 1 Access Lesson 5 Creating and Modifying Reports Microsoft Office 2007: Introductory.
Microsoft Access Intro Class 9 Report Design.
COMPUTER PROGRAMMING I 3.02 Apply Properties Associated with the Controls.
Access Forms and Reports.  One way to start a form is to use the Form Wizard  Let’s create a form for our Real Estate database, for the Listings table.
Chapter Name WorksheetName:______________________________________________ Period ______Date _____________ Directions: Do the following reading roadmap.
Object-Oriented Application Development Using VB.NET 1 Chapter 2 The Visual Studio.NET Development Environment.
Chapter 27 Getting “Web-ified” (Web Applications) Clearly Visual Basic: Programming with Visual Basic nd Edition.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 6 1 Microsoft Office Access 2003 Tutorial 6 – Creating Custom Forms.
When you first enter the Automation Rules process, there may be no rules listed. In that case the view may appear as shown below and you will have three.
IE 411/511: Visual Programming for Industrial Applications Lecture Notes #2 Introduction to the Visual Basic Express 2010 Integrated Development Environment.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
Lesson 3: Working with Forms. Learning Objectives After studying this lesson, you will be able to: Identify form design elements Create and print forms.
Presentation 8 Assigned 10/29/15 Due 11/5/15 Resources, Activities, Costs.
 2007 Pearson Education, Inc. All rights reserved Introduction to the Visual Basic Express 2005 IDE.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
Dive Into® Visual Basic 2010 Express
Chapter 2: The Visual Studio .NET Development Environment
Microsoft Office Access 2003
Microsoft Office Access 2003
Microsoft Office Access 2003
Building an Application in the Visual Basic .NET Environment
How to Add a New page to the St. Andrew’s Website
Group Boxes, Radio buttons and Checked List Boxes
Introduction to Visual Basic 2010
STARTING WITH ADOBE PREMIERe PRO
Why We Need Car Parking Systems - Wohr Parking Systems
Types of Stack Parking Systems Offered by Wohr Parking Systems
Add Title.
Presentation transcript:

1 Prototyping for HCI Spring 2004 (Week 10) Jorge A. Toro

2 The Language Custom Controls

HCI430 – J.Toro3 Custom Controls Controls are graphic objects that represent the properties or operations of other objects VB.NET Allows you to create your own set of controls

HCI430 – J.Toro4

5

6

7 Custom Controls There are different kinds of custom controls We will focus in the simplest ones You can add any controls you want similar to what you do when creating forms

HCI430 – J.Toro8 Example Custom label

HCI430 – J.Toro9 Custom Controls

HCI430 – J.Toro10 Adding properties Two sections  Get What the property returns if someone tries to read it  Set What the property receives if someone tries to write in it Public Property Title() Get Return label1.text End Get Set(ByVal Value) label1.text = Value End Set End Property

HCI430 – J.Toro11 Using the Control The custom control will appear in the control toolbox. Drag the control over the form just as any other control. Warning! You need to compile the project first before putting the control in.

HCI430 – J.Toro12

HCI430 – J.Toro13 Using the control The properties window will show the properties you defined for the control as well as others that come by default

HCI430 – J.Toro14 Questions?