Lesson 10: Exercise: Tip Calculator as a Universal App

Size: px
Start display at page:

Download "Lesson 10: Exercise: Tip Calculator as a Universal App"

Transcription

1 Lesson 10: Exercise: Tip Calculator as a Universal App In this lesson we're going to take the work that we did in the previous lesson and translate it into a Universal App, which will allow us to distribute our Tip Calculator to both the phone and to the Windows 8.1 App Store for inclusion there. To begin, (1) In the New Project template, select Templates > Visual C# > Store Apps > Universal Apps. (2) Select the Blank App (Universal Apps) project template. Name the project TipCalculatorUniversal and click the OK button to close the New Project dialog and create the new app. Once the new app is created, the Solution Explorer reveals three projects all prefixed with the solution name, then a dot, then: (1) Windows (2) WindowsPhone (3) Shared Windows Phone 8.1 Development for Absolute Beginners Page 103

2 Basically, the Windows and the Windows phone projects should only be different in so much that they have similar but different XAML to lay out based on screen size, for their specific differences. Then, anything that we can share should be added to this Shared project. So for our Tip Calculator app, this architecture is very straight forward. We'll put our Tip.cs class in the shared project and then reference it from both our WindowsPhone project and the Windows project. To begin, let's start with our shared project. I'm going to right-click the shared project and select Add > New Item : In the Add New Item dialog: Windows Phone 8.1 Development for Absolute Beginners Page 104

3 (1) Choose Class (2) Name it: Tip.cs (3) Click Add I ll copy and paste the work that I did in the previous lesson so we have exact duplicate. No changes required here. Windows Phone 8.1 Development for Absolute Beginners Page 105

4 Now that Tip class will be available to both my Windows and Windows phone projects. Next, we ll work on the Windows Phone project since we've already created that once. This should be just a matter of going to my MainPage.xaml and copying and pasting all the XAML that I created previously. After copying and pasting, I have the following result: Windows Phone 8.1 Development for Absolute Beginners Page 106

5 Next, I ll re-create the event handler method stubs by selecting each one in XAML and press the F12 keyboard command. When finished, the MainPage.xaml.cs should look similar to this: In my MainPage.xaml.cs, I ll add the PerformCalculation() helper method (and that should be the same as what I created in the previous lesson). Windows Phone 8.1 Development for Absolute Beginners Page 107

6 Near the top, we ll need to create a private field that will hold a reference to the Tip class: In the RadioButton_Click event handler, I want to call the performcalculation() helper method. Next: (1) In amounttextbox_lostfocus, I want to make sure to set the billamounttextbox.text to the tip.billamount to make sure it is formatted correctly. (2) In billamounttextbox_textchanged, I want to performcalculation() to make sure we re updating the new values. (3) In billamounttextbox_gotfocus, I want to clear the contents when the TextBox control receives focus so that I can enter fresh values. Windows Phone 8.1 Development for Absolute Beginners Page 108

7 It s time to test the app in the Emulator. Important: Currently the Windows project is selected as the Start Up Project. You can see that because it is in bold in the Solution Explorer. To change the Start Project that will execute when we start debugging to the Windows Phone project, right-click the TipCalculatorUniversal.WindowsPhone project in the solution explorer and select "Set as Start Up Project". As you can see, the project name is in a bold font as it appears inside of the Solution Explorer. Select the start debugging button to run the app in the Emulator. It should work exactly as it did in the previous lesson. Now, let's go ahead and create the Windows version of the app. First, I ll reset the TipCalculatorUniversal.Windows project as the Start Up Project using the technique I just demonstrated. Next, I ll open the MainPage.xaml of the Windows project. You can see we get more of the Microsoft Surface preview in the XAML Editor. Windows Phone 8.1 Development for Absolute Beginners Page 109

8 The purpose of this lesson is to demonstrate how little effort will be required to take our Windows Phone app and turn it into a Windows app. To that end, I ll begin by literally copying all of the XAML from my Phone s user interface and pasting it into the XAML editor for the Windows app. Once I copy and paste everything in the body of my page, I can see the preview displays my work: Admittedly, there s a lot of blank space on the right-hand side that we're not using, and I certainly could re-work a lot of this to make it utilize some of that blank space, however as a first pass, I'm pretty happy with this. It's the promise and the value of XAML that I'm able to reuse it both these contexts, and it works well. Beyond the XAML layout, we ll need to modify the MainPage.xaml.cs using the technique I demonstrated earlier, using F12 to Go To Definition and create the event handler method stubs. Windows Phone 8.1 Development for Absolute Beginners Page 110

9 The code in the code behind is identical to what we created before, so use the techniques and the code we used earlier in this lesson for the event handlers, the reference to the Tip class, and the performcalculation() helper method. Once you ve finished that, select the arrow next to the debug button that is currently set to Local Machine and change it to Simulator: Click the debug button. In the simulator, you can work with the app as expected: Windows Phone 8.1 Development for Absolute Beginners Page 111

10 As you can see, you can create a Universal App using one code base (the Tip class) and almost identical XAML for layout. Admittedly, I could tweak the Windows version of the XAML if I wanted to make it look good on the larger form factor, but even when I didn't modify it, it looked just fine, at least for this initial version. So I encourage you to do this: Whatever you're going to build, build it for both Windows and Windows Phone. Structure your shared logic with that in mind. Once you keep your shared logic / business rules / data access in the Shared project, you ll just reference methods and so forth that are inside of the classes of your Shared project from both the Windows and the Windows phone projects. Windows Phone 8.1 Development for Absolute Beginners Page 112

CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS

CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS Full Text Version of the Video Series Published April, 2014 Bob Tabor http://www.learnvisualstudio.net Contents Introduction... 2 Lesson

More information

Lesson 9: Exercise: Tip Calculator

Lesson 9: Exercise: Tip Calculator Lesson 9: Exercise: Tip Calculator In this lesson we ll build our first complete app, a Tip Calculator. It will help solve one of the fundamental problems that I have whenever I'm out to a restaurant,

More information

UWP Working with Navigation

UWP Working with Navigation UWP-019 - Working with Navigation Up until now we've only created apps with a single Page, the MainPage.XAML, and while that's fine for simple apps. However, it s likely that you will need to add additional

More information

Step by Step: Create a Table of Contents USE the First Ladies Research with Endnotes that is open from the previous exercise.

Step by Step: Create a Table of Contents USE the First Ladies Research with Endnotes that is open from the previous exercise. Step by Step: Create a Table of Contents USE the First Ladies Research with Endnotes that is open from the previous exercise. 1. Position the insertion point at the beginning of the document. Add a next

More information

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear.

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Users Guide Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Select an insert size When creating a new project, the first thing you

More information

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields.

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. In This Chapter Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. Adding help text to any field to assist users as they fill

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Templates and Forms A Complete Overview for Connect Users

Templates and Forms A Complete Overview for Connect Users Templates and Forms A Complete Overview for Connect Users Chapter 1: Introduction... 3 Chapter 2: Microsoft Online Templates... 3 Word Templates... 3 Template Details... 4 Create a Template... 4 Update

More information

Introduction. Using Styles. Word 2010 Styles and Themes. To Select a Style: Page 1

Introduction. Using Styles. Word 2010 Styles and Themes. To Select a Style: Page 1 Word 2010 Styles and Themes Introduction Page 1 Styles and themes are powerful tools in Word that can help you easily create professional looking documents. A style is a predefined combination of font

More information

Pro Users Guide Pro Desktop Signmaking Software

Pro Users Guide Pro Desktop Signmaking Software SignWord T Pro Users Guide Sign Systems Since 1966 For use with Microsoft Windows 9x, Windows NT Windows 2000, XP, ME operating systems Copyright 2003, APCO Graphics, Inc. Atlanta, GA. USA All rights reserved.

More information

Setting Up Appointment Reminders

Setting Up Appointment Reminders Setting Up Appointment Reminders Quick User Guide Click drop down arrow for Software Settings Select Software Settings Data Sync *Before you set up your Auto-reminders, you need to make sure your Data

More information

Chapter 5: Character and Paragraph Formatting in MS Word

Chapter 5: Character and Paragraph Formatting in MS Word Chapter 5: Character and Paragraph Formatting in MS Word 5.0 Learning Objectives At the end of this unit, you should be able to: 1. Perform character formatting 2. Change font size and color. 3. Paragraph

More information

Managing Your Grade Book This lesson will show you how to set up your grade book columns and have Canvas calculate your final grades for you.

Managing Your Grade Book This lesson will show you how to set up your grade book columns and have Canvas calculate your final grades for you. Managing Your Grade Book This lesson will show you how to set up your grade book columns and have Canvas calculate your final grades for you. Activating the Grade Book Click on Settings at the bottom of

More information

ORGANIZING YOUR ARTWORK WITH LAYERS

ORGANIZING YOUR ARTWORK WITH LAYERS 9 ORGANIZING YOUR ARTWORK WITH LAYERS Lesson overview In this lesson, you ll learn how to do the following: Work with the Layers panel. Create, rearrange, and lock layers and sublayers. Move objects between

More information

Creating Reports. There are several types of reports. We'll use Access Wizards and Tabs/Ribbons to design several simple reports.

Creating Reports. There are several types of reports. We'll use Access Wizards and Tabs/Ribbons to design several simple reports. Creating Reports In this tutorial we'll cover the very basic steps of creating Reports. A good manual or some knowledgeable assistance will be essential to mastering reports. There are several types of

More information

ProPresenter #1: General Pro Setup Pt 1

ProPresenter #1: General Pro Setup Pt 1 ProPresenter #1: General Pro Setup Pt 1 As time goes on, the service plan may change on Planning Center as we fine tune how we do ministry. The purpose of this guide is to train you in the different aspects

More information

Using Styles In Microsoft Word 2002

Using Styles In Microsoft Word 2002 INFORMATION SYSTEMS SERVICES Using Styles In Microsoft Word 2002 This document contains a series of exercises in the use of styles in the Microsoft Word 2002 word processing software. AUTHOR: Information

More information

Lecture (06) Java Forms

Lecture (06) Java Forms Lecture (06) Java Forms Dr. Ahmed ElShafee 1 Dr. Ahmed ElShafee, Fundamentals of Programming I, Introduction You don t have to output everything to a terminal window in Java. In this lecture, you ll be

More information

Step 1: Create A New Photoshop Document

Step 1: Create A New Photoshop Document Snowflakes Photo Border In this Photoshop tutorial, we ll learn how to create a simple snowflakes photo border, which can be a fun finishing touch for photos of family and friends during the holidays,

More information

2009 Microsoft Corporation. All rights reserved. Page 1

2009 Microsoft Corporation. All rights reserved. Page 1 Set up a document Getting started with a basic document in Microsoft Office Word 2007 is as easy as opening a new or existing document and starting to type. Whether you start a document from scratch or

More information

CheckBook Pro 2 Help

CheckBook Pro 2 Help Get started with CheckBook Pro 9 Introduction 9 Create your Accounts document 10 Name your first Account 11 Your Starting Balance 12 Currency 13 We're not done yet! 14 AutoCompletion 15 Descriptions 16

More information

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the db2 on Campus lecture series. Today we're going to talk about tools and scripting, and this is part 1 of 2

More information

Interactive Powerpoint. Jessica Stenzel Hunter Singleton

Interactive Powerpoint. Jessica Stenzel Hunter Singleton Interactive Powerpoint Jessica Stenzel Hunter Singleton Table of Contents iii Table of Contents Table of Contents... iii Introduction... 1 Basics of Powerpoint... 3 How to Insert Shapes... 3 How to Insert

More information

Word: Print Address Labels Using Mail Merge

Word: Print Address Labels Using Mail Merge Word: Print Address Labels Using Mail Merge No Typing! The Quick and Easy Way to Print Sheets of Address Labels Here at PC Knowledge for Seniors we re often asked how to print sticky address labels in

More information

Microsoft Word 2000 Mail Merge

Microsoft Word 2000 Mail Merge Microsoft Word 2000 Mail Merge Quick Reference Guide Page 1 Page 2 Page 3-6 Page 7 Page 8-10 Overview Creating the Form Letter The Mail Merge Helper Step One: Creating the Main Document Step Two: Working

More information

Boise State University. Getting To Know FrontPage 2000: A Tutorial

Boise State University. Getting To Know FrontPage 2000: A Tutorial Boise State University Getting To Know FrontPage 2000: A Tutorial Writers: Kevin Gibb, Megan Laub, and Gayle Sieckert December 19, 2001 Table of Contents Table of Contents...2 Getting To Know FrontPage

More information

Week 1: ArcPad and Windows CE handheld computers

Week 1: ArcPad and Windows CE handheld computers 12.481 Week 1: ArcPad and Windows CE handheld computers Goals: Learn to navigate around the PocketPC 2002 OS Make shapefiles in ArcPad Learn to add features and data to a shapefile Learn to use the information

More information

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics FACULTY AND STAFF COMPUTER TRAINING @ FOOTHILL-DE ANZA Office 2001 Graphics Microsoft Clip Art Introduction Office 2001 wants to be the application that does everything, including Windows! When it comes

More information

Word Tips (using Word but these work with Excel, PowerPoint, etc) Paul Davis Crosslake Communications

Word Tips (using Word but these work with Excel, PowerPoint, etc) Paul Davis Crosslake Communications Word Tips (using Word but these work with Excel, PowerPoint, etc) Paul Davis Crosslake Communications What tips are we going to discuss? First of all, HELP Fonts Tables Columns Pasting Images Mail Merge

More information

**These steps start after you have a complete model and decide to start rendering views.

**These steps start after you have a complete model and decide to start rendering views. Abstract: This step by step guide will help you understand how to render camera views as well as set up your own screen views straight from the render dialog box. **These steps start after you have a complete

More information

Interface. 2. Interface Adobe InDesign CS2 H O T

Interface. 2. Interface Adobe InDesign CS2 H O T 2. Interface Adobe InDesign CS2 H O T 2 Interface The Welcome Screen Interface Overview The Toolbox Toolbox Fly-Out Menus InDesign Palettes Collapsing and Grouping Palettes Moving and Resizing Docked or

More information

MICROSOFT WORD 2010 Quick Reference Guide

MICROSOFT WORD 2010 Quick Reference Guide MICROSOFT WORD 2010 Quick Reference Guide Word Processing What is Word Processing? How is Word 2010 different from previous versions? Using a computer program, such as Microsoft Word, to create and edit

More information

SNOWFLAKES PHOTO BORDER - PHOTOSHOP CS6 / CC

SNOWFLAKES PHOTO BORDER - PHOTOSHOP CS6 / CC Photo Effects: Snowflakes Photo Border (Photoshop CS6 / CC) SNOWFLAKES PHOTO BORDER - PHOTOSHOP CS6 / CC In this Photoshop tutorial, we ll learn how to create a simple and fun snowflakes photo border,

More information

System. The 'No Set-up' Method. The Basics. Nothing More. Document Assembly Document Automation Document Management

System. The 'No Set-up' Method. The Basics. Nothing More. Document Assembly Document Automation Document Management The Pathagoras System The 'No Set-up' Method The Basics. Nothing More. Document Assembly Document Automation Document Management 2 No Setup Required Introduction OK. We know why you are here. You have

More information

Microsoft Office PowerPoint 2007 Training

Microsoft Office PowerPoint 2007 Training Fayetteville State University presents: Microsoft Office PowerPoint 2007 Training Discover the power of custom layouts Course contents Overview: Choices that suit your content Lesson: The power of layouts

More information

Learn to make desktop LE

Learn to make desktop LE HACKING WITH SWIFT COMPLETE TUTORIAL COURSE Learn to make desktop LE P apps with real-worldam S Swift projects REEPaul Hudson F Project 1 Storm Viewer Get started coding in Swift by making an image viewer

More information

USER GUIDE MADCAP FLARE Topics

USER GUIDE MADCAP FLARE Topics USER GUIDE MADCAP FLARE 2018 Topics Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

EDGE, MICROSOFT S BROWSER

EDGE, MICROSOFT S BROWSER EDGE, MICROSOFT S BROWSER To launch Microsoft Edge, click the Microsoft Edge button (it s the solid blue E) on the Windows Taskbar. Edge Replaces Internet Explorer Internet Explorer is no longer the default

More information

Java Programming Constructs Java Programming 2 Lesson 1

Java Programming Constructs Java Programming 2 Lesson 1 Java Programming Constructs Java Programming 2 Lesson 1 Course Objectives Welcome to OST's Java 2 course! In this course, you'll learn more in-depth concepts and syntax of the Java Programming language.

More information

Creating Page Layouts 25 min

Creating Page Layouts 25 min 1 of 10 09/11/2011 19:08 Home > Design Tips > Creating Page Layouts Creating Page Layouts 25 min Effective document design depends on a clear visual structure that conveys and complements the main message.

More information

Chapter One Modifying Your Fonts

Chapter One Modifying Your Fonts Chapter One Modifying Your Fonts Steps to Modifying Fonts Opening Fonts Changing Character Weight About Font Piracy Creating Oblique Fonts Creating Fractions Creating Ligatures Creating Condensed Characters

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. 18 Advanced Tips for Pages, Numbers, and Keynote Written by Akshata Shanbhag Published April 2018. Read the original article here: https://www.makeuseof.com/tag/advanced-tips-pagesnumbers-keynote/ This

More information

AO3. 1. Load Flash. 2. Under Create New click on Flash document a blank screen should appear:

AO3. 1. Load Flash. 2. Under Create New click on Flash document a blank screen should appear: AO3 This is where you use Flash to create your own Pizzalicious advert. Follow the instructions below to create a basic advert however, you ll need to change this to fit your own design! 1. Load Flash

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

NVTI s POWERPOINT 101

NVTI s POWERPOINT 101 NVTI s POWERPOINT 101 1) Click on START on bottom left of screen 2) Go to PROGRAMS 3) Go to MICROSOFT POWERPOINT, click. 4) When it opens, it s on Blank Presentation Hit OK 5) Choose a Layout (click on

More information

Section 1 Getting Started

Section 1 Getting Started Section 1 Getting Started ECDL Section 1 Getting Started By the end of this section you should be able to: Understand PowerPoint Principles Start PowerPoint Use an Installed Template Recognise the Screen

More information

Portable Class Libraries ---

Portable Class Libraries --- Portable Class Libraries --- Overview In this lab, you ll learn about Portable Class Libraries (PCLs). PCLs enable you to create managed assemblies that work on more than one.net Framework platform. Within

More information

The Basics of PowerPoint

The Basics of PowerPoint MaryBeth Rajczewski The Basics of PowerPoint Microsoft PowerPoint is the premiere presentation software. It enables you to create professional presentations in a short amount of time. Presentations using

More information

Dealing with the way Mail Merge changed in MS Word 2003

Dealing with the way Mail Merge changed in MS Word 2003 Dealing with the way Mail Merge changed in MS Word 2003 Go From This: To This: The New and Improved Mail Merge Mail Merge has changed dramatically from the older versions of Word. They just forgot to tell

More information

Workshop. Import Workshop

Workshop. Import Workshop Import Overview This workshop will help participants understand the tools and techniques used in importing a variety of different types of data. It will also showcase a couple of the new import features

More information

Fundamentals of XAML and Microsoft Expression Blend

Fundamentals of XAML and Microsoft Expression Blend 10553A - Version: 1 22 April 2018 Fundamentals of XAML and Microsoft Expression Blend Fundamentals of XAML and Microsoft Expression Blend 10553A - Version: 1 3 days Course Description: This 3-day course

More information

Introduction to Microsoft Publisher

Introduction to Microsoft Publisher Class Description This is an introduction to Microsoft Publisher, with a focus on choosing a template and modifying it to meet your needs. Class Length One and one half (1½) hours Introduction to Microsoft

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER? 1 A Quick Tour WHAT S IN THIS CHAPTER? Installing and getting started with Visual Studio 2012 Creating and running your fi rst application Debugging and deploying an application Ever since software has

More information

Lesson 3 Paragraph Styles

Lesson 3 Paragraph Styles Lesson 3 Paragraph Styles The Concept Of Styles: Styles: In the context of LibreOffice Writer, Styles refers to the characteristics of a part of a document. For example, a Page Style includes information

More information

Lab 7 Unit testing and debugging

Lab 7 Unit testing and debugging CMSC160 Intro to Algorithmic Design Blaheta Lab 7 Unit testing and debugging 13 March 2018 Below are the instructions for the drill. Pull out your hand traces, and in a few minutes we ll go over what you

More information

Art of the Apps Monthly Membership. SEPTEMBER 2018 Mobile App: LetterGlow. at Scrapaneers.com. Companion Handouts

Art of the Apps Monthly Membership. SEPTEMBER 2018 Mobile App: LetterGlow. at Scrapaneers.com. Companion Handouts Companion Handouts August 2018 : Art of the App Monthly Membership Art of the Apps Monthly Membership Page 1 of 15 at Scrapaneers.com SEPTEMBER 2018 Mobile App: LetterGlow Companion Handouts September

More information

Lesson 4 Page Styles

Lesson 4 Page Styles Lesson 4 Page Styles The Concept of Styles: Styles: In the context of LibreOffice Writer, Styles refers to the characteristics of a part of a document. For example, a Page Style includes information about

More information

Make any video interactive in 15 minutes

Make any video interactive in 15 minutes Make any video interactive in 15 minutes THE HOTSPOT A call-to-interact that can stick to moving people & objects. COOL FACT: Sticky hotspots stick to your moving people or objects like glue. HOTSPOT Tips

More information

Word 2010 Styles and Themes

Word 2010 Styles and Themes Introduction Styles and themes are powerful tools in Word that can help you easily create professional looking documents. A style is a predefined combination of font style, colour, and size of text that

More information

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough.

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough. Azure Developer Immersion In this walkthrough, you are going to put the web API presented by the rgroup app into an Azure API App. Doing this will enable the use of an authentication model which can support

More information

Using Dreamweaver CC. 5 More Page Editing. Bulleted and Numbered Lists

Using Dreamweaver CC. 5 More Page Editing. Bulleted and Numbered Lists Using Dreamweaver CC 5 By now, you should have a functional template, with one simple page based on that template. For the remaining pages, we ll create each page based on the template and then save each

More information

InDesign Tutorial: Working with InDesign panels. InDesign Tutorial: Working with InDesign panels. The InDesign Tools panel

InDesign Tutorial: Working with InDesign panels. InDesign Tutorial: Working with InDesign panels. The InDesign Tools panel InDesign Tutorial: Working with InDesign panels What you?ll learn in this InDesign Tutorial: The InDesign CS6 Tools Panel Understanding the InDesign CS6 Workspace This tutorial provides you with a foundation

More information

Webform: THERE IS THIS FOR THAT

Webform: THERE IS THIS FOR THAT Webform: THERE IS THIS FOR THAT Hello! Hi, my name is Jacob Rockowitz. I am known as jrockowitz on the web. I am a Drupal developer and software architect. I built and maintain the Webform module for Drupal

More information

Lesson 3 Formatting Paragraphs

Lesson 3 Formatting Paragraphs Lesson 3 Formatting Paragraphs The concept of styles: Styles: In the context of LibreOffice Writer, Styles refers to the characteristics of a part of a document. For example, a Page Style includes information

More information

How to create a letter in Crystal

How to create a letter in Crystal How to create a letter in Crystal Step 1. Open up Crystal. Step 2. Go to the records (EMR) page. Step 3. On the right hand of the page. Click the button Letter Step 4. Within the letter page that shows

More information

Beginning Microsoft Word Crystal Lake Public Library

Beginning Microsoft Word Crystal Lake Public Library Beginning Microsoft Word 2013 Crystal Lake Public Library Agenda What is it? Do I have it? Why bother? Launch & view Typing time Selecting text Home tab Undo Page layout File backstage Going forward What

More information

Introduction to the RedDot Content Management System

Introduction to the RedDot Content Management System Introduction to the RedDot Content Management System Table of Contents Content Management Systems... 2 System Requirements. 3 Rider Web Site Organization 4 Accessing RedDot.. 6 Finding your Content to

More information

Your First Windows Form

Your First Windows Form Your First Windows Form From now on, we re going to be creating Windows Forms Applications, rather than Console Applications. Windows Forms Applications make use of something called a Form. The Form is

More information

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES Eric Peasley, Department of Engineering Science, University of Oxford version 4.6, 2018 MATLAB Application Exercises In these exercises you will

More information

Excel Basics: Working with Spreadsheets

Excel Basics: Working with Spreadsheets Excel Basics: Working with Spreadsheets E 890 / 1 Unravel the Mysteries of Cells, Rows, Ranges, Formulas and More Spreadsheets are all about numbers: they help us keep track of figures and make calculations.

More information

TI-83+ Z80 ASM for the Absolute Beginner

TI-83+ Z80 ASM for the Absolute Beginner TI-83+ Z80 ASM for the Absolute Beginner LESSON FOUR: Your First ASM Programs 2 YOUR FIRST ASM PROGRAMS Now that you have a basic understanding on the calculator processor understanding that is necessary

More information

The first time you open Word

The first time you open Word Microsoft Word 2010 The first time you open Word When you open Word, you see two things, or main parts: The ribbon, which sits above the document, and includes a set of buttons and commands that you use

More information

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3 Quick Start Guide - Contents Opening Word... 1 Locating Big Lottery Fund Templates... 2 The Word 2013 Screen... 3 Things You Might Be Looking For... 4 What s New On The Ribbon... 5 The Quick Access Toolbar...

More information

Introduction. Inserting and Modifying Tables. Word 2010 Working with Tables. To Insert a Blank Table: Page 1

Introduction. Inserting and Modifying Tables. Word 2010 Working with Tables. To Insert a Blank Table: Page 1 Word 2010 Working with Tables Introduction Page 1 A table is a grid of cells arranged in rows and columns. Tables can be customized and are useful for various tasks such as presenting text information

More information

Open your blogger dashboard and click the design tab and then click template designer

Open your blogger dashboard and click the design tab and then click template designer Open your blogger dashboard and click the design tab and then click template designer Now you're going to go down the list on the left hand and make changes to your blog to set up your template. First

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

BrainyBetty.Com presents: Mail merge I: Use mail merge for mass mailings

BrainyBetty.Com presents: Mail merge I: Use mail merge for mass mailings BrainyBetty.Com presents: Mail merge I: Use mail merge for mass mailings Course contents Overview: Mailings en masse Lesson 1: How it works Lesson 2: Set up your recipient list Lesson 3: Perform a complete

More information

2 Frequently Asked... Questions. 4 How Do I... 1 Working within... Entries

2 Frequently Asked... Questions. 4 How Do I... 1 Working within... Entries Contents I Table of Contents Part I Welcome 6 1 Welcome... 6 2 Frequently Asked... Questions 6 Part II Getting Started 6 1 Getting Started... 6 2... 7 Create a New Database... 7 Open an Existing... Database

More information

The Foundation. Review in an instant

The Foundation. Review in an instant The Foundation Review in an instant Table of contents Introduction 1 Basic use of Excel 2 - Important Excel terms - Important toolbars - Inserting and deleting columns and rows - Copy and paste Calculations

More information

Tutorials. Lesson 1 - Format a Schedule. In this lesson you will learn how to: Change the schedule s date range. Change the date headings.

Tutorials. Lesson 1 - Format a Schedule. In this lesson you will learn how to: Change the schedule s date range. Change the date headings. In this lesson you will learn how to: Change the schedule s date range. Change the date headings. Tutorials Change the schedule dimensions. Change the legend and add a new legend entry. Work with pages

More information

Introduction to Microsoft Office 2016: Word

Introduction to Microsoft Office 2016: Word Introduction to Microsoft Office 2016: Word Last Updated: September 2018 Cost: $2.00 Microsoft Word is a word processing software. You can use it to type letters, reports, and other documents. This class

More information

Lesson 21 Getting Started with PowerPoint Essentials

Lesson 21 Getting Started with PowerPoint Essentials Getting Started with PowerPoint Essentials Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition 1 Objectives Identify the parts of the PowerPoint screen and navigate through a presentation.

More information

Working with the Dope Sheet Editor to speed up animation and reverse time.

Working with the Dope Sheet Editor to speed up animation and reverse time. Bouncing a Ball Page 1 of 2 Tutorial Bouncing a Ball A bouncing ball is a common first project for new animators. This classic example is an excellent tool for explaining basic animation processes in 3ds

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

More information

COPYRIGHTED MATERIAL. Adobe Illustrator CC Jumpstart. Lesson 1

COPYRIGHTED MATERIAL. Adobe Illustrator CC Jumpstart. Lesson 1 Lesson 1 Adobe Illustrator CC Jumpstart What you ll learn in this lesson: Setting up an Artboard Creating and combining shapes Applying color with the new Kuler panel and effects Adding and adjusting text

More information

Webform: THERE IS THIS FOR THAT

Webform: THERE IS THIS FOR THAT Webform: THERE IS THIS FOR THAT Hello! Hi, my name is Jacob Rockowitz. I am known as jrockowitz on the web. I am a Drupal developer and software architect. I built and maintain the Webform module for Drupal

More information

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

More information

TIPS FOR WORKING WITH THE HONORS COLLEGE SENIOR PROJECT TEMPLATE

TIPS FOR WORKING WITH THE HONORS COLLEGE SENIOR PROJECT TEMPLATE TIPS FOR WORKING WITH THE HONORS COLLEGE SENIOR PROJECT TEMPLATE There are several issues that arise when using the Honors College Senior Project Template. Most common are formatting tabs, margins, and

More information

Search Screen. To search for a model click search at the top.

Search Screen. To search for a model click search at the top. Search Screen To search for a model click search at the top. This will open the search screen. PtP allows you to search for models in 2 different ways. Simple Search Multiple Fields Search A. Simple Search

More information

Printing Envelopes in Microsoft Word

Printing Envelopes in Microsoft Word Printing Envelopes in Microsoft Word P 730 / 1 Stop Addressing Envelopes by Hand Let Word Print Them for You! One of the most common uses of Microsoft Word is for writing letters. With very little effort

More information

Microsoft Word - Templates

Microsoft Word - Templates Microsoft Word - Templates Templates & Styles. Microsoft Word come will a large amount of predefined templates designed for you to use, it is also possible to download additional templates from web sites

More information

InDesign Part II. Create a Library by selecting File, New, Library. Save the library with a unique file name.

InDesign Part II. Create a Library by selecting File, New, Library. Save the library with a unique file name. InDesign Part II Library A library is a file and holds a collection of commonly used objects. A library is a file (extension.indl) and it is stored on disk. A library file can be open at any time while

More information

A QUICK TOUR OF ADOBE ILLUSTRATOR CC (2018 RELEASE)

A QUICK TOUR OF ADOBE ILLUSTRATOR CC (2018 RELEASE) A QUICK TOUR OF ADOBE ILLUSTRATOR CC (2018 RELEASE) Lesson overview In this interactive demonstration of Adobe Illustrator CC (2018 release), you ll get an overview of the main features of the application.

More information

Class 3 Page 1. Using DW tools to learn CSS. Intro to Web Design using Dreamweaver (VBUS 010) Instructor: Robert Lee

Class 3 Page 1. Using DW tools to learn CSS. Intro to Web Design using Dreamweaver (VBUS 010) Instructor: Robert Lee Class 3 Page 1 Using DW tools to learn CSS Dreaweaver provides a way for beginners to learn CSS. Here s how: After a page is set up, you might want to style the . Like setting up font-family, or

More information

Changing the Layout of a Document

Changing the Layout of a Document LESSON 5 Changing the Layout of a Document 5.1 After completing this lesson, you will be able to: Adjust page margin settings. Set paragraph indentation and spacing. Change indents and tab settings. Insert

More information

Public Meeting Agenda Formatting Best Practices

Public Meeting Agenda Formatting Best Practices DEFINITIVE GUIDE Public Meeting Agenda Formatting Best Practices In this guide, we will first walk you through some best practices with text and images. Then, we will show you how to execute the best practices

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2011 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

VISION BASICS. Introduction (note materials updated for Vision 6.8.0)

VISION BASICS. Introduction (note materials updated for Vision 6.8.0) SAYRE AREA SCHOOL DISTRICT TECHNOLOGY TIPS VISION BASICS Introduction (note materials updated for Vision 6.8.0) Vision is a new software program for monitoring and controlling students computers in a lab

More information

Modifying the master. Accessing the slide master

Modifying the master. Accessing the slide master 1 Accessing the slide master Most of what is defined by the template is stored on the Slide Master. You can modify the Slide Master and save your own templates in order to personalize your presentations

More information