Razvoj aplikacija u programskom jeziku C# Dobrodošli!

Size: px
Start display at page:

Download "Razvoj aplikacija u programskom jeziku C# Dobrodošli!"

Transcription

1 Razvoj aplikacija u programskom jeziku C# Dobrodošli!

2 Servisne informacije vjestina.azurewebsites.net

3 Servisne informacije Do sljedećeg predavanja Obavezno upisana vještina Čuvati, koristiti i vratiti

4 Servisne informacije Ako sudjelujete u SSA Objaviti kao HIDDEN (!)

5 Servisne informacije Imamo 50 kôdova za 6-mjesečne Student Passove - 100$ mjesečno Svi ostali mogu otvoriti 1-mjesečni Trial - 200$ mjesečno

6 Servisne informacije

7 Univerzalne Aplikacije 1/2

8 APP TYPES App type Windows Phone Windows RT C# VB.NET C++ JavaScript Extension Silverlight for Windows Phone* Windows Phone Silverlight Windows Phone Apps xap xap appx Windows Apps appx Universal Apps appx

9 Windows 8.1 provides developers with a shared platform that renders the right app experience for the right form-factor Designed once; engaging everywhere Converged developer platform Converged app model Shared app identities + entitlement Unified push services (via WNS) Apps come to life on Windows Live tile improvements Action Center for smart notifications Background execution + triggers Bluetooth-LE support for wearables + beacons Internet Explorer 11 improvements 9

10 Windows Phone 7.5 Windows Phone 8.0 Convergence Begins with IE WP 7.5 shipped with IE9 Same IE codebase as Windows Same JavaScript engine as Windows Converged Core OS Common NT kernel, file system and core networking Kernel mode driver f/work Secure boot & BitLocker Developer Platform Partial API convergence (focus on sensors & IAP) Native Code (C++) and DirectX IE10 Converged Dev Platform More skillset reuse More code reuse More seamless app experiences Aligning the Stores Shared dev registration Shared entitlement Common Core Platform Proximity & Location frameworks Security & identity Task scheduler 10

11 PLATFORM CONVERGENCE JOURNEY Converged OS kernel Converged app model Windows 10

12 The Windows Runtime (WinRT) is the shared runtime and API space used by store apps across the Windows platform (phone and client) Dramatic convergence in 8.1 Goal is 100% convergence for dev scenarios In 8.0, we had ~30% API convergence With 8.1, we move well past 90%+ convergence 12

13 13

14

15 15

16 One Visual Studio Universal app project template for your app Shared dev and test tooling for both platforms 16

17 Not covered today 17

18 tablet 10 tablet Infinite virtual canvas Provides a common layout coordinate system that extends along the x and y axis into infinity, allowing you to scale up 18

19 19

20 TimeZoneChange InternetAvailable NetworkStateChange Task MaintenanceTrigger LocationTrigger PUSH Notification TimeTrigger PushNotificationTrigger 20

21 Windows Notification Service (WNS) Shared push service for Windows + Phone Improved queuing to limit lost notifications due to intermittent network connectivity Tile templates + toasts Shared tile templates (more!) Periodic tile updates Toasts 21

22 Action Center Central location to surface missed notifications Apps can intelligently manage notifications (silently add, update, and delete notifications) 22

23 Backup [Device A] Roaming Local Local Cache Temp WP 8.1 WP 8.1 PFN App Device AB

24 24

25 25

26 26

27 27

28 28

29 29

30 Internet Explorer 11 brings more life to the mobile web via better HTML5 support Ability to code pinning behavior Specify high-resolution site icons Live tiles using notifications Professional quality video Adaptive streaming Secure viewing Accessibility improvements WebGL support Web spec based on OpenGL ES 2.0, to enable use of low-level 3D graphics APIs on web sites and HTML-based apps Rich user interactions Screen + device orientation APIs Pre-fetch and pre-render 30

31 31

32 32

33 33

34 34

35 35

36 Supported operating systems Windows 8.1 (x86 or x64) Hardware To use the Windows Phone Emulators 4 GB of free disk space 1.5 GB of RAM (recommended) 64-bit (x64) motherboard Windows 8.1 Pro or higher (for Hyper-V) and Second Level Address Translation (SLAT) Min 4GB RAM

37 37

38 I want to build a NEW app Build for both Phone & Tablet? Yes or Add Tablet later Use Windows XAML Windows Phone 8.0 Windows Phone 8.1 Windows 8.1 No Phone Only Need Silverlightonly APIs? No Use Windows XAML Windows Phone 8.0 Windows Phone 8.1 Windows 8.1 (later) Windows Phone 8.0 Yes Use Silverlight 8.1 Windows Phone 8.1 Windows

39 39

40 WinRT App

41

42

43

44

45 45

46 80% exact same XAML 20% custom Common Button CheckBox ToggleSwitch Slider Optimized DatePicker TimePicker Signature Hub Pivot ListView GridView SysTray RadioButton ProgressBar CommandBar

47

48

49 <TextBox InputScope= " SmtpAddress"/> <TextBox InputScope= "CurrencyAmountAndSymbol"/> <TextBox InputScope="Number"/>

50 Button Content Button Button Button Grid Grid.ColumnDefinitions ColumnDefinition ColumnDefinition Grid.ColumnDefinitions Image StackPanel TextBlock TextBlock StackPanel Grid Button HyperlinkButton

51 Code-Behind XAML Button Click="SimpleButton_Click" private async void SimpleButton_Click var new await The click event provides a simple way to handle button interaction directly from the code-behind. Double-click the button on the designer or use Intellisense in the XAML editor to generate the handler. Handlers may also be wired up from code using the += syntax in C# and equivalent in VB or C++.

52 {x:null}

53 TextBlock ProgressRing IsActive="True" TextBlock ProgressBar Minimum="0" Maximum="250" Value="50" TextBlock ProgressBar IsIndeterminate="True" Important! You must deactivate progress rings and progress bars when not visible. There s a performance penalty if you do not.

54

55

56

57 Button <Button.Flyout> <Flyout> StackPanel TextBlock TextBlock Button StackPanel </Flyout> </Button.Flyout> Button Button <Button.Flyout> <MenuFlyout> MenuFlyoutItem MenuFlyoutItem MenuFlyoutSeparator ToggleMenuFlyoutItem ToggleMenuFlyoutItem </MenuFlyout> </Button.Flyout> Button

58

59 private async void ShowContentDialog() { ContentDialog dialog = new ContentDialog() { Title = "Download updates?", Content = "This update will clean the slate for Iron Man", PrimaryButtonText = "Yes, clean it", SecondaryButtonText = "No, Dont!" }; dialog.secondarybuttonclick += dialog_secondarybuttonclick; } ContentDialogResult result = await dialog.showasync(); if (result == ContentDialogResult.Primary) { /* do some more Primary logic */ } else if (result == ContentDialogResult.Secondary) { /* else do Secondary logic */ } void dialog_secondarybuttonclick(contentdialog sender, object args) { /* you can also hook up to a button event handler */ }

60 AboutMessage mydialog = new AboutMessage(); ContentDialogResult result = await mydialog.showasync();

61

62

63

64 <Page.BottomAppBar> <CommandBar x:name="commandbar"> <CommandBar.PrimaryCommands> <AppBarButton Label="edit" Icon="Edit" /> <AppBarButton Label="favorite" Icon="Favorite" /> <AppBarSeparator /> <AppBarToggleButton Label="play" Icon="Play" /> </CommandBar.PrimaryCommands> <CommandBar.SecondaryCommands> <AppBarButton Label="help" Icon="Question" /> </CommandBar.SecondaryCommands> </CommandBar> </Page.BottomAppBar> 64

65 Windows Phone Windows 65

66

67 Icon Class SymbolIcon BitmapIcon FontIcon PathIcon Icon contents Named Segoe UI Symbol symbol A bitmap (PNG, etc.) image A custom font A XAML path <CommandBar.SecondaryCommands> <AppBarButton Label="Add Item"> <AppBarButton.Icon> <SymbolIcon Symbol="Add" /> </AppBarButton.Icon> </AppBarButton> <AppBarButton Label="Block"> <AppBarButton.Icon> <BitmapIcon UriSource="assets/foo.png"/> </AppBarButton.Icon> </AppBarButton> </CommandBar.SecondaryCommands>

68 <Page.BottomAppBar> <CommandBar> <AppBarButton x:name="btnbrag" Icon="Camera" Label="brag"> <AppBarButton.Flyout> <MenuFlyout> <MenuFlyoutItem x:name="menuphoto" Text="Photo" Click="menuPhoto_Click"/> <MenuFlyoutItem x:name="menuvideo" Text="Video" </MenuFlyout> </AppBarButton.Flyout> </AppBarButton> Click="menuVideo_Click"/> <AppBarButton x:name="btnpintostart" Icon="Pin" Click="btnPinToStart_Click" Label="Like"/> </CommandBar> </Page.BottomAppBar>

69 By default, Status Bar is visible and displays with a transparent background The background color that displays is that of the containing Page Can program the BackgroundColor and BackgroundOpacity There is no way to control the Status Bar in XAML code only StatusBar StatusBar StatusBar StatusBar StatusBar

70 var StatusBar StatusBar

71 ApplicationView.GetForCurrentView().SetLayoutBounds( ApplicationViewLayoutBounds.CoreWindowBounds);

72 Soft buttons are hidden Any touch on the screen brings up the soft buttons and transport controls

73

74

75 Color="{ThemeResource SystemColorControlAccentColor}" "{StaticResource PhoneAccentBrush}" SystemColorControlAccentColor

76

77

78 Light/dark resources update on app resume

79

80 <StackPanel RequestedTheme="Light"> </StackPanel>

81 Zadaća

82 Hvala na domagoj.eu

UNIVERSAL APPS FOR WINDOWS 8.1 AND WINDOWS PHONE 8.1

UNIVERSAL APPS FOR WINDOWS 8.1 AND WINDOWS PHONE 8.1 UNIVERSAL APPS FOR WINDOWS 8.1 AND WINDOWS PHONE 8.1 Philip Japikse (@skimedic) skimedic@outlook.com www.skimedic.com/blog Microsoft MVP, ASPInsider, MCSD, MCDBA, CSM, CSP Principal Consultant/Architect,

More information

Windows Store App Development

Windows Store App Development Windows Store App Development C# AND XAML PETE BROWN 11 MANNING SHELTER ISLAND contents preface xvii acknowledgments xx about this book xxii about the author xxviii. about the cover illustration xxix If

More information

Essentials of Developing Windows Store Apps Using C# MOC 20484

Essentials of Developing Windows Store Apps Using C# MOC 20484 Essentials of Developing Windows Store Apps Using C# MOC 20484 Course Outline Module 1: Overview of the Windows 8 Platform and Windows Store Apps This module describes the Windows 8 platform and features

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Windows 10 Apps Development

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Windows 10 Apps Development About the Tutorial Welcome to Windows 10 tutorial. This tutorial is designed for people who want to learn how to develop apps meant for Windows 10. After completing it, you will have a better understating

More information

Windows 10 Quoi de neuf dans la plateforme de développement? Etienne Margraff Microsoft Technical Evangelist @meulta

Windows 10 Quoi de neuf dans la plateforme de développement? Etienne Margraff Microsoft Technical Evangelist @meulta Windows 10 Quoi de neuf dans la plateforme de développement? Etienne Margraff Microsoft Technical Evangelist @meulta Jean-Sébastien Dupuy Microsoft Technical Evangelist @dupuyjs Converged OS kernel Converged

More information

App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS

App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS Module 4: App Development Essentials Windows, Bing, PowerPoint, Internet Explorer, Visual Studio, WebMatrix, DreamSpark, and Silverlight

More information

Pro Windows Phone 7. Development. Rob Cameron

Pro Windows Phone 7. Development. Rob Cameron Pro Windows Phone 7 Development Rob Cameron Contents Contents at a Glance About the Author About the Technical Reviewer Acknowledgments. Introduction iv xii xiii xiv xv Chapter 1: Introduction to Windows

More information

70-484: Essentials of developing Windows Store apps using C#

70-484: Essentials of developing Windows Store apps using C# 70-484: Essentials of developing Windows Store apps using C# The following tables itemize changes to exam 70-484. These changes will be made on December 2, 2013, to include updates that relate to Windows

More information

Introducing Windows Phone 8 App Development. Lee Stott Microsoft @lee_stott http://www.microsoft.com/uk/faculty http://dev.windowsphone.

Introducing Windows Phone 8 App Development. Lee Stott Microsoft @lee_stott http://www.microsoft.com/uk/faculty http://dev.windowsphone. Introducing Windows Phone 8 App Development Lee Stott Microsoft @lee_stott http://www.microsoft.com/uk/faculty http://dev.windowsphone.com Agenda Introducing Windows Phone 8 New app platform in WP8 Application

More information

MS-20485: Advanced Windows Store App Development Using C#

MS-20485: Advanced Windows Store App Development Using C# MS-20485: Advanced Windows Store App Development Using C# Description In this course the students will learn the more advanced programming skills and techniques that they can use to optimize their Windows

More information

Development. Wiley Publishing, Inc. 24-HOUR TRAINER. Brian Faucher WILEY

Development. Wiley Publishing, Inc. 24-HOUR TRAINER. Brian Faucher WILEY Development 24-HOUR TRAINER Brian Faucher WILEY Wiley Publishing, Inc. INTRODUCTION xxvii LESSON 1: HELLO, WINDOWS PHONE 7 3 Overview of Windows Phone 7 3 Silverlight Versus XNA 4 Silverlight 4 Microsoft

More information

Introduction to Building Windows Store Apps with Windows Azure Mobile Services

Introduction to Building Windows Store Apps with Windows Azure Mobile Services Introduction to Building Windows Store Apps with Windows Azure Mobile Services Overview In this HOL you will learn how you can leverage Visual Studio 2012 and Windows Azure Mobile Services to add structured

More information

Windows Phone Guide for Android Application Developers

Windows Phone Guide for Android Application Developers Windows Phone Guide for Android Application Developers Microsoft 2/9/2012 Rev 5.0 Table of Content Microsoft... 1 Table of Content... 2 About this Development Guide... 5 Target Audience... 5 Conventions

More information

20481C: Essentials of Developing Windows Store Apps Using HTML5 and JavaScript

20481C: Essentials of Developing Windows Store Apps Using HTML5 and JavaScript 20481C: Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Course Details Course Code: Duration: Notes: 20481C 5 days This course syllabus should be used to determine whether the course

More information

Advanced Windows Store App Development Using C#

Advanced Windows Store App Development Using C# 20485C - Version: 1 07 July 2016 Advanced Windows Store App Development Using C# Advanced Windows Store App Development Using C# 20485C - Version: 1 5 days Course Description: This course you will learn

More information

Getting Started with Android Programming (5 days) with Android 4.3 Jelly Bean

Getting Started with Android Programming (5 days) with Android 4.3 Jelly Bean Getting Started with Android Programming (5 days) with Android 4.3 Jelly Bean Course Description Getting Started with Android Programming is designed to give students a strong foundation to develop apps

More information

for Java developers Building Mobile Applications Introduction 1 Building Mobile Applications

for Java developers Building Mobile Applications Introduction 1 Building Mobile Applications Introduction Building Mobile Applications for Java developers Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted,

More information

CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup. Emmanuel Agu

CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup. Emmanuel Agu CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup Emmanuel Agu What is Android? Android is world s leading mobile operating system Google: Owns Android, maintains it, extends

More information

ANDROID INTRODUCTION TO ANDROID

ANDROID INTRODUCTION TO ANDROID ANDROID JAVA FUNDAMENTALS FOR ANDROID Introduction History Java Virtual Machine(JVM) JDK(Java Development Kit) JRE(Java Runtime Environment) Classes & Packages Java Basics Data Types Variables, Keywords,

More information

Microsoft 20481 - Essentials of Developing Windows Store Apps Using HTML5 and JavaScript

Microsoft 20481 - Essentials of Developing Windows Store Apps Using HTML5 and JavaScript 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20481 - Essentials of Developing Windows Store Apps Using HTML5 and JavaScript Length 5 days Price $4389.00 (inc GST) Version C Overview In this course students

More information

Creating Next-Generation User Experience with Windows Aero, Windows Presentation Foundation and Silverlight on Windows Embedded Standard 7

Creating Next-Generation User Experience with Windows Aero, Windows Presentation Foundation and Silverlight on Windows Embedded Standard 7 Creating Next-Generation User Experience with Windows Aero, Windows Presentation Foundation and Silverlight on Windows Embedded Standard 7 Windows Embedded Standard uses the latest Technology included

More information

Accellion, Inc. 1900 Embarcadero Road Suite 207 Palo Alto, CA 94303 Tel +1 650 739-0095 Fax +1 650 739-0561. info@accellion.com

Accellion, Inc. 1900 Embarcadero Road Suite 207 Palo Alto, CA 94303 Tel +1 650 739-0095 Fax +1 650 739-0561. info@accellion.com Accellion, Inc. 1900 Embarcadero Road Suite 207 Palo Alto, CA 94303 Tel +1 650 739-0095 Fax +1 650 739-0561 info@accellion.com TABLE OF CONTENTS QUICK START... 4 Create an Account... 4 Send a file... 4

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

Introduction to Tizen SDK 2.0.0 Alpha. Taiho Choi Samsung Electronics

Introduction to Tizen SDK 2.0.0 Alpha. Taiho Choi Samsung Electronics Introduction to Tizen SDK 2.0.0 Alpha Taiho Choi Samsung Electronics Contents Web technologies of Tizen Components of SDK 2.0.0 Alpha Hello world! Debugging apps Summary 1 Web technologies on Tizen Web

More information

Installing FileMaker Pro 11 in Windows

Installing FileMaker Pro 11 in Windows Installing FileMaker Pro 11 in Windows Before you begin the installation process, please exit other open programs and save your work. Installation notes Before you install FileMaker Pro, review the following

More information

InnerWorkings Catalog

InnerWorkings Catalog InnerWorkings Catalog A complete guide to the InnerWorkings.NET training catalog, with prerequisites, learning goals & technical levels for each Drill. Contents InnerWorkings Catalog... 1 Introduction...

More information

Delivering Mobile BI Dashboards to Any Device via XAML & HTML5

Delivering Mobile BI Dashboards to Any Device via XAML & HTML5 Delivering Mobile BI Dashboards to Any Device via XAML & HTML5 Prepared by The ComponentArt R&D Team Last Update: February 3, 2012 Version 1.2 Table of Contents EXECUTIVE SUMMARY... 3 TARGET AUDIENCE...

More information

SMART Meeting Pro 3 software

SMART Meeting Pro 3 software Release notes SMART Meeting Pro 3 software About these release notes These release notes summarize the changes in SMART Meeting Pro 3 software and its service packs. Product information SMART Meeting Pro

More information

Computer Requirements

Computer Requirements Installing Pro64 Network Manager It is recommended that you quit all running Windows applications before starting the Aviom Pro64 Network Manager installation process. Check the Aviom website (www.aviom.com)

More information

Product Guide. 2013 Nintex. All rights reserved. Errors and omissions excepted.

Product Guide. 2013 Nintex. All rights reserved. Errors and omissions excepted. Product Guide support@nintex.com www.nintex.com 2013 Nintex. All rights reserved. Errors and omissions excepted. Contents Contents... 2 Introduction... 4 1 Understanding system requirements... 5 1.1 Operating

More information

Windows Phone 7 Mobile Applications Using Decision Structures

Windows Phone 7 Mobile Applications Using Decision Structures C7937_ch05_rev03_001-086.qxd 7/11/11 10:07 AM Page 1 CHAPTER 5 Windows Phone 7 Mobile Applications Using Decision Structures OBJECTIVES Write a program for the Windows Phone 7 development platform Understand

More information

Introducing Windows 8

Introducing Windows 8 Introducing Windows 8 Introduction Very Aggressive Change Building block for the future and future of devices Biggest Obstacle: Where is!?!? The New User Experience Start Screen Full screen Start Menu

More information

ComponentOne. Windows for WPF

ComponentOne. Windows for WPF ComponentOne Windows for WPF Copyright 1987-2012 GrapeCity, Inc. All rights reserved. ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Internet: info@componentone.com

More information

Windows Phone 8 Guide for Android Application Developers

Windows Phone 8 Guide for Android Application Developers Windows Phone 8 Guide for Android Application Developers Microsoft Open Technologies, Inc. 8/1/2013 Rev 1.0 Table of Content Table of Content...2 About this Development Guide... 4 Chapter 1: An Introduction

More information

Network Administrator s Guide and Getting Started with Autodesk Ecotect Analysis

Network Administrator s Guide and Getting Started with Autodesk Ecotect Analysis Autodesk Ecotect Analysis 2011 Network Administrator s Guide and Getting Started with Autodesk Ecotect Analysis This document describes how to install and activate Autodesk Ecotect Analysis 2011 software

More information

What s New in Visual Studio for C++ Developers ---

What s New in Visual Studio for C++ Developers --- What s New in Visual Studio for C++ Developers --- Overview In this lab, you will take a quick look at some of what s new in Visual Studio 2013 for C++ developers. This includes the ability to create and

More information

ANDROID PROGRAMMING - INTRODUCTION. Roberto Beraldi

ANDROID PROGRAMMING - INTRODUCTION. Roberto Beraldi ANDROID PROGRAMMING - INTRODUCTION Roberto Beraldi Introduction Android is built on top of more than 100 open projects, including linux kernel To increase security, each application runs with a distinct

More information

HTML Egg Pro. Tutorials

HTML Egg Pro. Tutorials HTML Egg Pro Tutorials How to create a web form In this tutorial, we will show you how to create a web form using text field, email field, multiple choices, checkboxes and the bot checker widget. In the

More information

About This Guide... 4. Signature Manager Outlook Edition Overview... 5

About This Guide... 4. Signature Manager Outlook Edition Overview... 5 Contents About This Guide... 4 Signature Manager Outlook Edition Overview... 5 How does it work?... 5 But That's Not All...... 6 And There's More...... 6 Licensing... 7 Licensing Information... 7 System

More information

Development. Wiley Publishing, Inc. BUILDING APPLICATIONS AND GAMES USING. Christopher Fairbairn VISUAL STUDIO, SILVERLIGHT, AND XNA.

Development. Wiley Publishing, Inc. BUILDING APPLICATIONS AND GAMES USING. Christopher Fairbairn VISUAL STUDIO, SILVERLIGHT, AND XNA. Development BUILDING APPLICATIONS AND GAMES USING VISUAL STUDIO, SILVERLIGHT, AND XNA Nick Randolph Christopher Fairbairn WILEY Wiley Publishing, Inc. INTRODUCTION xxv CHAPTER 1: TAKING THE METRO WITH

More information

Gauge Drawing Tool... 8. Slider Drawing Tool... 8. Toggle Button Drawing Tool... 8. One-Way List Drawing Tool... 8

Gauge Drawing Tool... 8. Slider Drawing Tool... 8. Toggle Button Drawing Tool... 8. One-Way List Drawing Tool... 8 v. 20120510 Table of Contents RTiPanel Overview and Requirements... 3 Software Requirements:... 3 Hardware Requirements:... 3 Network Requirements:... 3 Licensing Requirements:... 4 Basic Integration Designer

More information

Michigan State University. Team Meijer. Tablet-Based Point-of-Sale System. Project Plan. Fall 2011

Michigan State University. Team Meijer. Tablet-Based Point-of-Sale System. Project Plan. Fall 2011 Michigan State University Team Meijer Tablet-Based Point-of-Sale System Project Plan Fall 2011 Meijer Contacts: Scott Pallas Murali Rajagopalan Team Members: Riti Adhi Peter Rifel Andrew Rockwell Mark

More information

Name of chapter & details

Name of chapter & details Course Title Course Code Modern Application Development CE913 (Elective III) Theory : 03 Course Credit Practical : 01 Tutorial : 00 Course Learning Outcomes Credits : 04 On the completion of the course,

More information

SMART Meeting Pro 3 software

SMART Meeting Pro 3 software Release notes SMART Meeting Pro 3 software About these release notes These release notes summarize the changes in SMART Meeting Pro 3 software and its service packs. N OT E This software includes SMART

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Windows Presentation Foundation

Windows Presentation Foundation Windows Presentation Foundation C# Programming April 18 Windows Presentation Foundation WPF (code-named Avalon ) is the graphical subsystem of the.net 3.0 Framework It provides a new unified way to develop

More information

Product Guide. www.nintex.com support@nintex.com. 2013 Nintex. All rights reserved. Errors and omissions excepted.

Product Guide. www.nintex.com support@nintex.com. 2013 Nintex. All rights reserved. Errors and omissions excepted. Product Guide 2013 Nintex. All rights reserved. Errors and omissions excepted. www.nintex.com support@nintex.com 2 Nintex Workflow for Office 365 Product Guide Contents Nintex Forms for Office 365...5

More information

Windows Phone 8 Guide for iphone Application Developers

Windows Phone 8 Guide for iphone Application Developers Windows Phone 8 Guide for iphone Application Developers Microsoft Open Technologies, Inc. 8/1/2013 Rev 1.0 Table of Contents Microsoft Open Technologies, Inc.... 1 Table of Contents...2 About this Development

More information

Table of Contents. Introduction...9. Installation...17. Program Tour...31. The Program Components...10 Main Program Features...11

Table of Contents. Introduction...9. Installation...17. Program Tour...31. The Program Components...10 Main Program Features...11 2011 AdRem Software, Inc. This document is written by AdRem Software and represents the views and opinions of AdRem Software regarding its content, as of the date the document was issued. The information

More information

VIRTU Universal MVP Installation Guide

VIRTU Universal MVP Installation Guide VIRTU Universal MVP Installation Guide 1 1. Introduction VIRTU Universal MVP includes the base features of Virtu Universal technology, which virtualizes integrated GPU and discrete GPU for best of breed

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

Windows Phone 7 Guide for iphone Application Developers

Windows Phone 7 Guide for iphone Application Developers Windows Phone 7 Guide for iphone Application Developers Microsoft 3/25/2011 Rev 3.0 About this Development Guide... 3 Chapter 1: Windows Phone 7 Platform introduced to iphone application developers...

More information

Geomagic Design. Release Notes. Get to Market Faster with Better Products at a Lower Cost V17

Geomagic Design. Release Notes. Get to Market Faster with Better Products at a Lower Cost V17 Geomagic Design Get to Market Faster with Better Products at a Lower Cost Release Notes V17 TABLE OF CONTENTS 1 INTRODUCTION 1 COPYRIGHT 1 2 INSTALLATION 2 SOFTWARE IDENTIFICATION 2 UPGRADING TO GEOMAGIC

More information

Set Up and Maintain Customer Support Tools

Set Up and Maintain Customer Support Tools Set Up and Maintain Customer Support Tools Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Be sure to connect the USB cable from TonePort into your computer s USB port, and then proceed with the following steps

Be sure to connect the USB cable from TonePort into your computer s USB port, and then proceed with the following steps GearBox/TonePort setup for Line 6 Monkey Compatibility Check Mac OS X This document is designed to provide information for using the Line 6 Monkey compatibility utility. One of the very useful functions

More information

HTML5 Applications Made Easy on Tizen IVI. Brian Jones / Jimmy Huang

HTML5 Applications Made Easy on Tizen IVI. Brian Jones / Jimmy Huang HTML5 Applications Made Easy on Tizen IVI Brian Jones / Jimmy Huang IVI Systems Today Lots of hardware variety. Multiple operating systems Different input devices Software development requires access to

More information

Quick Start Using DASYLab with your Measurement Computing USB device

Quick Start Using DASYLab with your Measurement Computing USB device Quick Start Using DASYLab with your Measurement Computing USB device Thank you for purchasing a USB data acquisition device from Measurement Computing Corporation (MCC). This Quick Start document contains

More information

Microsoft Dynamics CRM 2016 Interactive Service Hub User Guide

Microsoft Dynamics CRM 2016 Interactive Service Hub User Guide Microsoft Dynamics CRM 2016 Interactive Service Hub User Guide Microsoft Dynamics CRM Online Microsoft Dynamics CRM 2016 (on-premises) Version 1.0 The new interactive experience for customer service We

More information

How to create pop-up menus

How to create pop-up menus How to create pop-up menus Pop-up menus are menus that are displayed in a browser when a site visitor moves the pointer over or clicks a trigger image. Items in a pop-up menu can have URL links attached

More information

Qlik Sense Desktop. Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved.

Qlik Sense Desktop. Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik Sense Desktop Qlik Sense 2.0.6 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense, QlikView,

More information

Access to remote DVR from IE USER S MANUAL CONTENT

Access to remote DVR from IE USER S MANUAL CONTENT Access to remote DVR from IE CONTENT... 2 Preface... 2 1. Introduction... 2 2. System requirement and executing environment... 2 2.1. Supported operating System:... 2 2.2. Hardware requirement (recommend):...

More information

Mobile App Design and Development

Mobile App Design and Development Mobile App Design and Development The course includes following topics: Apps Development 101 Introduction to mobile devices and administrative: Mobile devices vs. desktop devices ARM and intel architectures

More information

Microsoft Windows 10 IoT

Microsoft Windows 10 IoT Microsoft IoT martin.grossen@avnet.con Martin Grossen, emvp, Franchise Manager Microsoft IoT Europe 2 Microsoft Industrial Channel Rebranding Microsoft Windows IoT Client Roadmap Ind 8.0 Pro XP XPE XP

More information

Key Benefits of Microsoft Visual Studio 2008

Key Benefits of Microsoft Visual Studio 2008 Key Benefits of Microsoft Visual Studio 2008 White Paper December 2007 For the latest information, please see www.microsoft.com/vstudio The information contained in this document represents the current

More information

Gephi Tutorial Visualization

Gephi Tutorial Visualization Gephi Tutorial Welcome to this Gephi tutorial. It will guide you to the basic and advanced visualization settings in Gephi. The selection and interaction with tools will also be introduced. Follow the

More information

Introduction to Application Development with Silverlight for Windows Embedded. Abstract. Windows Embedded CE 6.0 R3 Technical Article

Introduction to Application Development with Silverlight for Windows Embedded. Abstract. Windows Embedded CE 6.0 R3 Technical Article Introduction to Application Development with Silverlight for Windows Embedded Windows Embedded CE 6.0 R3 Technical Article Writers: David Franklin Published: September 2009 Applies To: Windows Embedded

More information

QuarkCopyDesk 9.5.4 ReadMe

QuarkCopyDesk 9.5.4 ReadMe QuarkCopyDesk 9.5.4 ReadMe CONTENTS Contents QuarkCopyDesk 9.5.4 ReadMe...4 Related Documents...5 System requirements...6 System requirements: Mac OS X...6 System requirements: Windows...6 Installing:

More information

Developer's Cookbook. Building Applications with. The Android. the Android SDK. A Addison-Wesley. James Steele Nelson To

Developer's Cookbook. Building Applications with. The Android. the Android SDK. A Addison-Wesley. James Steele Nelson To The Android Developer's Cookbook Building Applications with the Android SDK James Steele Nelson To A Addison-Wesley Upper Saddle River, NJ Boston «Indianapolis San Francisco New York Toronto Montreal London

More information

Republic Polytechnic School of Infocomm C308 Web Framework. Module Curriculum

Republic Polytechnic School of Infocomm C308 Web Framework. Module Curriculum Republic Polytechnic School of Infocomm C308 Web Framework Module Curriculum This document addresses the content related abilities, with reference to the module. Abilities of thinking, learning, problem

More information

Developing Mobile Websites with Responsive Web Design and jquery Mobile

Developing Mobile Websites with Responsive Web Design and jquery Mobile Developing Mobile Websites with Responsive Web Design and jquery Mobile Duration: 5 Days Price: CDN$2875 *Prices are subject to GST/HST Course Description: This hands-on course conveys the fundamental

More information

Mobile Technique and Features

Mobile Technique and Features Smart evision International, Inc. Mobile Technique and Features Smart evision White Paper Prepared By: Martin Hu Last Update: Oct 16, 2013 2013 1 P a g e Overview Mobile Business intelligence extends and

More information

SIMATIC. WinCC V7.0. Getting started. Getting started. Welcome 2. Icons 3. Creating a project 4. Configure communication 5

SIMATIC. WinCC V7.0. Getting started. Getting started. Welcome 2. Icons 3. Creating a project 4. Configure communication 5 SIMATIC WinCC V7.0 SIMATIC WinCC V7.0 Printout of the Online Help 1 Welcome 2 Icons 3 Creating a project 4 Configure communication 5 Configuring the Process Screens 6 Archiving and displaying values 7

More information

Windows Embedded 7 E versus Windows Embedded 7 P

Windows Embedded 7 E versus Windows Embedded 7 P Windows Embedded 7 E versus Windows Embedded 7 P Applications and Services Development.Net Framework.Net Framework 3.5 SP1.NET Framework 2.0 Client Profile.NET Framework 3.0.NET Framework 3.0 Client Profile.NET

More information

COMSOL Server. Manual

COMSOL Server. Manual COMSOL Server Manual COMSOL Server Manual 1998 2015 COMSOL Protected by U.S. Patents listed on www.comsol.com/patents, and U.S. Patents 7,519,518; 7,596,474; 7,623,991; 8,457,932; and 8,954,302. Patents

More information

Designing for Windows Phone

Designing for Windows Phone Designing for Windows Phone Contents LESSON 1 METRO Design Introduction to METRO design.... 5 Alive in motion... 5 Content, not chrome.... 5 Authentically digital.... 5 Before you start.... 5 Adobe Photoshop

More information

Version 14.4. Client Setup Guide

Version 14.4. Client Setup Guide Version 14.4 Client Setup Guide Copyright 2005-2015 Imagine Learning, Inc. All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic, mechanical,

More information

Enterprise Mobile Application Development: Native or Hybrid?

Enterprise Mobile Application Development: Native or Hybrid? Enterprise Mobile Application Development: Native or Hybrid? Enterprise Mobile Application Development: Native or Hybrid? SevenTablets 855-285-2322 Contact@SevenTablets.com http://www.seventablets.com

More information

Team Foundation Server 2013 Installation Guide

Team Foundation Server 2013 Installation Guide Team Foundation Server 2013 Installation Guide Page 1 of 164 Team Foundation Server 2013 Installation Guide Benjamin Day benday@benday.com v1.1.0 May 28, 2014 Team Foundation Server 2013 Installation Guide

More information

Setting up Windows Phone 8 environment in VMWare

Setting up Windows Phone 8 environment in VMWare Setting up Windows Phone 8 environment in VMWare Pre Requisites Windows Phone 8 SDK is only supported with 64-bit Windows 8 Pro or higher. VMware player 5.0.1 or workstation 9. ( The Hypervisor is not

More information

Windows 10 Development for Absolute Beginners

Windows 10 Development for Absolute Beginners Windows 10 Development for Absolute Beginners Based on the video series originally recorded by Bob Tabor, http://www.learnvisualstudio.net Edited and revised by Bob Tabor and Steven Nikolic About This

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

QML and JavaScript for Native App Development

QML and JavaScript for Native App Development Esri Developer Summit March 8 11, 2016 Palm Springs, CA QML and JavaScript for Native App Development Michael Tims Lucas Danzinger Agenda Native apps. Why? Overview of Qt and QML How to use JavaScript

More information

How do I Check if My Computer is Compatible with Windows 7

How do I Check if My Computer is Compatible with Windows 7 How do I Check if My Computer is Compatible with Windows 7 Enterprise Computing & Service Management 1 Follow this link to download the Windows 7 Upgrade Advisor http://www.microsoft.com/windows/windows-7/get/upgrade-advisor.aspx

More information

Adobe Flash Catalyst CS5.5

Adobe Flash Catalyst CS5.5 Adobe Flash Catalyst CS5.5 Create expressive interfaces and interactive content without writing code Use a new efficient workflow to collaborate intelligently and roundtrip files with developers who use

More information

The Ubuntu phone and the road to convergence. David Planella @ UbuCon Berlin, Oct 2015

The Ubuntu phone and the road to convergence. David Planella @ UbuCon Berlin, Oct 2015 The Ubuntu phone and the road to convergence David Planella @ UbuCon Berlin, Oct 2015 The Ubuntu phone Taking a bold approach The premises Innovating across the board A compelling experience for users

More information

MULTIFUNCTIONAL DIGITAL SYSTEMS. Network Fax Guide

MULTIFUNCTIONAL DIGITAL SYSTEMS. Network Fax Guide MULTIFUNCTIONAL DIGITAL SYSTEMS Network Fax Guide 2009 KYOCERA MITA Corporation All rights reserved Preface Thank you for purchasing Multifunctional Digital Color Systems. This manual explains the instructions

More information

Mobile Apps with App Inventor

Mobile Apps with App Inventor Mobile Apps with App Inventor written for 91.113 Michael Penta Table of Contents Mobile Apps... 4 Designing Apps in App Inventor... 4 Getting Started... 5 App Inventor Layout... 5 Your First App... 7 Making

More information

Education Software Installer 2015

Education Software Installer 2015 Education Software Installer 2015 INSTALLATION GUIDE FOR WINDOWS OPERATING SYSTEMS Trademark notice SMART Notebook, SMART Ink, SMART Response, smarttech, the SMART logo and all SMART taglines are trademarks

More information

Trends in HTML5. Matt Spencer UI & Browser Marketing Manager

Trends in HTML5. Matt Spencer UI & Browser Marketing Manager Trends in HTML5 Matt Spencer UI & Browser Marketing Manager 6 Where to focus? Chrome is the worlds leading browser - by a large margin 7 Chrome or Chromium, what s the difference Chromium is an open source

More information

How To Let A Sitebuilder Users Create A Trial Site On A Freebie (Free) For Free

How To Let A Sitebuilder Users Create A Trial Site On A Freebie (Free) For Free Parallels Plesk Panel Contents About This Document 3 Introduction to Customer Acquisition Scenario 4 Configuring CAS for Existing Customers 7 Configuring CAS for Potential Customers 8 Appendix A. Customizing

More information

Introducing. Markus Erlacher Technical Solution Professional Microsoft Switzerland

Introducing. Markus Erlacher Technical Solution Professional Microsoft Switzerland Introducing Markus Erlacher Technical Solution Professional Microsoft Switzerland Overarching Release Principles Strong emphasis on hardware, driver and application compatibility Goal to support Windows

More information

Smartphone Development Tutorial

Smartphone Development Tutorial Smartphone Development Tutorial CS 160, March 7, 2006 Creating a simple application in Visual Studio 2005 and running it using the emulator 1. In Visual Studio 2005, create a project for the Smartphone

More information

Visio 2010. Ľubo Goryl Microsoft Solutions Specialist

Visio 2010. Ľubo Goryl Microsoft Solutions Specialist Visio 2010 Ľubo Goryl Microsoft Solutions Specialist Agenda Overall Product Roadmap Usage Scenario s Investment Area s Demo Questions 2 The Visio Sweet Spot #1 Competitor to Visio is PowerPoint! Visio

More information

Beginning Windows 8. Mike Halsey Microsoft MVP for Windows. Apress*

Beginning Windows 8. Mike Halsey Microsoft MVP for Windows. Apress* Beginning Windows 8 Mike Halsey Microsoft MVP for Windows Apress* Contents at a Glance About the Author About the Technical Reviewers Acknowledgments Introduction xxi xxiii xxv xxvii Chapter 1: Introducing

More information

GETTING STARTED... 9. Exclaimer Signature Manager Exchange Edition Overview... 10. Signature Content... 10. Signature Rules... 10

GETTING STARTED... 9. Exclaimer Signature Manager Exchange Edition Overview... 10. Signature Content... 10. Signature Rules... 10 Contents GETTING STARTED... 9 Overview... 10 Signature Content... 10 Signature Rules... 10 Complete Control... 11 How It Works... 11 System Requirements... 12 Hardware... 12 Software... 12 System Changes...

More information

Chapter 4: Website Basics

Chapter 4: Website Basics 1 Chapter 4: In its most basic form, a website is a group of files stored in folders on a hard drive that is connected directly to the internet. These files include all of the items that you see on your

More information

Contents. Hardware Configuration... 27 Uninstalling Shortcuts Black...29

Contents. Hardware Configuration... 27 Uninstalling Shortcuts Black...29 Contents Getting Started...1 Check your Computer meets the Minimum Requirements... 1 Ensure your Computer is Running in Normal Sized Fonts... 7 Ensure your Regional Settings are Correct... 9 Reboot your

More information

Quick Start Guide for OnTime Now

Quick Start Guide for OnTime Now Quick Start Guide for OnTime Now Set up your OnTime Now Account... 2 What you see... 3 Create a Project... 4 Add a Work Item from the main grid... 4 Launch the Planning Board... 5 Add a Work Item from

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

Lecture 1 Introduction to Android

Lecture 1 Introduction to Android These slides are by Dr. Jaerock Kwon at. The original URL is http://kettering.jrkwon.com/sites/default/files/2011-2/ce-491/lecture/alecture-01.pdf so please use that instead of pointing to this local copy

More information