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

Size: px
Start display at page:

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

Transcription

1 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 better debug Windows 8.1 apps, IDE improvements that make your life as a developer easier and more productive, new REST libraries that make connecting to services much easier, and even some extensions that bring rename refactoring support and the ability to quickly create a project file from a PDB to Visual Studio This will not be a comprehensive look at all new features, but you will be able to follow provided links to learn more when appropriate. Objectives In this hands-on lab, you will learn how to do the following: - Create a Windows Store app using C++ and the new Hub App project template - Debug asynchronous tasks - Utilize IDE improvements - Get started adding push notifications to a Windows Store app - Use the Visual C++ Refactoring extension to rename a function - Use the PbdProject for Visual Studio 2013 extension to create a project file from a PDB file Prerequisites The following are required to complete this hands-on lab: - Windows Microsoft Visual Studio 2013 (with Update 2 RC applied) Note: You must be an Administrator on the machine where you run this lab in order to install a developer license. Notes Estimated time to complete this lab: 30 minutes. Note: You can log into the virtual machine with user name User and password P2ssw0rd. Note: This lab may make references to code and other assets that are needed to complete the exercises. You can find these assets on the desktop in a folder named TechEd Within that folder, you will find additional folders that match the name of the lab you are working on.

2 Exercise 1: What s New in Visual Studio for C++ Developers In this exercise, you will take a look at a number of new and improved features and capabilities provided with Visual Studio Task 1: Create a new Windows Store app using C++ In this task, you will create a new Windows Store app based on the new Hub App (XAML) project template. 1. Open Visual Studio Select File New Project. 3. Under Templates Visual C++ Store Apps Windows Apps category and select the Hub App (Windows) template. Note: The Hub App template is new in Visual Studio Enter HubApp in the Name field and then click the OK button to create the solution.

3 5. If you do not have a developer license for Windows 8.1 installed yet, you will be prompted to agree to the terms and then install a license. Click the I Agree button if you agree with the terms. You may also need to click Yes in the User Account Control dialog box that appears. Note: Developer licenses are needed for each machine that you develop or test on, and are free to obtain and use 6. If you are installing a developer license, you may also need to sign in with your Microsoft account. Go ahead and sign in to finish the developer license installation.

4 7. After installing a developer license using a Microsoft account, you will be given 30 days before it expires. Click the Close button. 8. Double-click on HubPage.xaml to load it with the XAML designer. 9. The Hub App template makes use of the new Hub control provided with Windows 8.1.

5 Additional XAML controls introduced with Windows 8.1 include: - AppBar controls - CommandBar - DatePicker - Flyout - Hyperlink - MenuFlyout - SettingsFlyout - TimePicker Updates to XAML controls include: - FlipView updates - Headers for ComboBox, DatePicker, TimePicker, Slider, Edit controls - Placeholder text 10. In the XAML pane for HubPage.xaml, scroll down and take note that the hub app that you created does indeed use the new Hub control and defines a number of hub sections on the page to get started with. Note: The hub template uses updated Microsoft design principles that help you create great looking apps with improved usability and additional flexibility.

6 11. In the Quick Launch bar at the top-right corner of Visual Studio, search for document outline to locate the Document Outline window, and then click on the shortcut link to open it. 12. In the Document Outline window, right-click on the BottomAppBar node and select Add CommandBar. 13. The CommandBar control, new with Windows 8.1, lets you easily create properly designed app bars by providing automatic layout of commands and automatic resizing of the app bar when the app size changes. 14. Expand the new CommandBar node in the Document Outline window to expose the nodes for PrimaryCommands and SecondaryCommands. 15. Right-click on PrimaryCommands node and select Add AppBarButton. This adds a new button to the app bar in the bottom-right corner of the design surface.

7 16. To see how easy it is to create a great looking app bar, replace the contents of the <CommandBar> control with the following XAML. XAML <AppBarToggleButton Icon="Shuffle" Label="Shuffle" /> <AppBarToggleButton Icon="RepeatAll" Label="Repeat" /> <AppBarSeparator/> <AppBarButton Icon="Back" Label="Back" /> <AppBarButton Icon="Stop" Label="Stop" /> <AppBarButton Icon="Play" Label="Play" /> <AppBarButton Icon="Forward" Label="Forward" /> <CommandBar.SecondaryCommands> <AppBarButton Icon="Like" Label="Like" /> <AppBarButton Icon="Dislike" Label="Dislike" /> </CommandBar.SecondaryCommands>

8 Note: If you need to do more custom work in the app bar beyond using the provided AppBarButton, AppBarToggleButton, and AppBarSeparator, you will need to use an AppBar control instead of the CommandBar. 17. Right-click on the Icon property for the first AppBarToggleButton and then select Go To Definition. This is new in Visual Studio Since the property is defined in metadata, the Object Browser will open to show the definition. 19. Close the Object Browser window. Note: Additional additions and improvements to the XAML code editor include IntelliSense for data binding expressions and resources, code snippets, and better commenting support. To learn more, please see this article from the Visual Studio blog. Note: Additional additions and improvements to the XAML designer include rulers and dynamic guides (to help better position controls) and improved overall performance. To learn more, please see this article from the Visual Studio blog. Task 2: Debugging Asynchronous Tasks In this task, you will learn about improvements made to the Call Stack and Tasks windows that provide additional debugging information when working with asynchronous tasks. 1. Open HubPage.xaml.cpp (right-click somewhere within the designer and select View Code). 2. Add the following code to the beginning of the HubPage constructor. This creates a few asynchronous tasks that you will use to learn about the new asynchronous debugging features found in Visual Studio 2013.

9 Note: The updates to Visual Studio 2013 described in this task depend upon features first introduced in Windows 8.1. Note: Asynchronous tasks in C++ are implemented in the Parallel Patterns Library, which is included by default for Windows Store applications created using the project templates that come with Visual Studio 2013 (ppltasks.h is included in the pch.h file). C++ create_task([] { std::array<task<void>, 3> tasks = { create_task([] { unsigned i = 0; while (i < 100) { i++; } }), create_task([] { unsigned i = 0; while (i < UINT_MAX) { i++; } }), create_task([] { while (true); }) }; }); 3. Set a breakpoint on the line that creates the first worker task, as shown in the screenshot below.

10 Note: Prior to Visual Studio 2013 and Windows 8.1, developers were unable to use the Call Stack window to determine how an application got to the current location when debugging asynchronous code. Since tasks are created on new threads, the Call Stack window did not contain information about the call stack that existed when it was scheduled and, therefore, had no information about the code sequence leading up to its execution. 4. With Visual Studio 2013 and Windows 8.1, developers will now see some additional stack frames added when debugging asynchronous code that aids in understanding how the program reached a location inside an asynchronous function. The additional frame(s) represent the call stack when the task was first created and are added below the task s actual call stack, with an annotated frame named [Async Call]. 5. Press F5 to start debugging the application. Note: You may be prompted to build the project whenever it is out of date. For the remainder of this lab, go ahead and click Yes each time you are prompted, or alternatively select the checkbox labeled Do not show this dialog again and then click Yes. 6. The debugger should break right at the beginning of the lambda function that represents the asynchronous task.

11 7. Take a closer look at the Call Stack window (Debug Windows Call Stack) and note that in addition to the current call stack, you can see the annotated frame [Async Call] and the frame from when the task was first created. Note: If you were to select the stack frame just below the [Async Call], you would be taken to the location in code, but you will not have access to local variables and other stack information. The main benefit to the additional frame is traceability. 8. Another new debugging feature enabled for C++ developers in Visual Studio 2013 is Just My Code. If you are familiar with any.net Framework languages, you should already know that this debugging feature steps over system, framework, and other non-user calls and collapses those calls in the call stack windows. 9. To see what the Call Stack window would look like without the Just My Code feature enabled, rightclick somewhere within the Call Stack window and select the Show External Code option.

12 10. As you can see, this presents more noise than you would typically need to see during a typical debugging session, and certainly makes it more difficult to locate the frames representing your code. 11. Right-click within the Call Stack window and de-select the option to Show External Code. Note: You can enable or disable the global Just My Code setting for Visual Studio (for all projects in all languages) in the Debugging / General node of the Options window. Note: C++ Just My Code is different than.net Framework and JavaScript Just My Code because the stepping behavior is independent of the call stack behavior. For more information, please see this MSDN documentation.

13 12. Now take a look at the Tasks window (Debug Windows Tasks). The Tasks window resembles the Threads window, except that it shows information about task_handle objects instead of each thread. Like threads, tasks represent asynchronous operations that can run concurrently; however, multiple tasks may run on the same thread. Note: The Tasks window was formerly named the Parallel Tasks window when it was first introduced in Visual Studio 2010, and was renamed for Visual Studio In addition to the rename, it has been upgraded to aid Windows developers in understanding the state of all tasks and promises (in the case of JavaScript) running in their application. 13. You can use the Tasks window to help debug hung and excessively long tasks when you work with the concurrency runtime and task groups, parallel algorithms, asynchronous agents, and lightweight tasks. For more information about tasks in native code, please see the MSDN documentation on the Concurrency Runtime. 14. Note the new fields that show current Status, Start Time (relative to the start app), and Duration. You should see that the currently selected task is in the Active state, and perhaps another task is in the Scheduled state (completed tasks are not displayed). 15. If you hover over the Location column it will show a tooltip view of the call stack (which is navigable). 16. If you would also like to see which thread has been assigned to each active task, you can right-click within the Tasks window and select the Columns Thread Assignment option.

14 17. In the case that you have a lot of Tasks in the application, you can also take advantage of grouping. Right-click within the Tasks window and select the Group By Status option.

15 18. Press Shift+F5 to stop debugging the application. 19. Visual Studio 2013 also introduces the Performance and Diagnostics Hub, which brings together new and existing tools into one location, and makes it easier to see what tools are available for the current project based on current language, application type, or platform. Future updates will also be surface here, increasing the discoverability for testers and developers. To take a quick look at the hub, select Debug Performance and Diagnostics. 20. The startup project for the solution is automatically selected as the Analysis Target, and the tools currently available are shown. 21. Select the Show All Tools link to view all of the tools included in the hub. 22. Note that all tools are now shown, although some are currently disabled.

16 23. Some of the tools shown here are not new in Visual Studio 2012 and 2013, but have simply been moved into the hub. These include the Performance Wizard and JavaScript Function Timing tools. New tools since Visual Studio 2012 include CPU Sampling, JavaScript Memory, and HTML UI Responsiveness (some were introduced in product updates). New tools since Visual Studio 2013 include XAML UI Responsiveness and Energy Consumption. Note: If you are interested in learning more about the new performance and diagnostic tools, please take a look at this blog post by Dan Taylor. If you would like to dig in even more, you can also walk through the New Visual Studio 2013 Diagnostic Tools hands-on-lab. Task 3: Quick Look at IDE Improvements In this task, you will take a quick look at some of the miscellaneous improvements made in the IDE. 1. Open the IDE_Demo.sln solution file found in the lab s Source\IDE_Demo folder. 2. Open App.xaml.cpp from the IDE_Demo project. 3. It is now possible for C++ developers to add event handlers using the same += helper that.net developers have enjoyed for years. In the App constructor, add a Resuming event handler just underneath the existing Suspending handler. To do this, type Resuming += and then press the Tab key twice to automatically stub out a handler and wire it up to the event. Note: You need to wait until the project is fully opened and processed by Visual Studio before this will work. Wait until the blue status bar near the bottom of Visual Studio shows Ready.

17 4. You will automatically be taken to the OnResuming stub method, where you would then provide an implementation. For the purposes of this lab, we will leave the stub in place as-is. 5. It is now easier to fix up code formatting for C++ based on your preferences. Take a look at the Helper class (towards the bottom of App.xaml.cpp) and note that it places opening braces on the same line as the type and function definitions. 6. Assuming that the developer or team prefers to have open braces on a new line, you will now use the IDE to specify your formatting preferences and then use that to re-format code on demand. In the Quick Launch window in the top-right corner of Visual Studio, enter new lines and then select the option related to new line formatting for C/C In the Options window, modify the Position of open braces for types, Position of open braces for functions, and Position of open braces for control blocks options to Move to a new line and then click OK. Note: The Options window is now re-sizeable.

18 8. Highlight all lines of the Helper class (towards the bottom of App.xaml.cpp) and then select Edit Advanced Format Selection. 9. Moving lines of code around is now easier to do. Scroll to the top of App.xaml.cpp and place the cursor on the line from the App constructor where the Resuming event handler is setup.

19 10. Move the line up above the Suspending event handler by pressing Alt+Up a few times. 11. In addition to Go To Definition, developers can now take a peek at the definition using the Peek Definition feature, without the need to open a new code editor tab. Right-click on the call to the InitializeComponent function and then select the Peek Definition option (or press Alt+F12).

20 12. Press Escape to close the peek view. 13. One more IDE improvement that makes navigating source code easier is the enhanced scrollbar. To enable the enhanced scroll bar, right-click on the current scrollbar from a code editor window and select Scroll Bar Options. 14. In the Options window for Scroll Bars, select the option to Use map mode for vertical scroll bar and the option to use the Medium source overview, and then click OK.

21 15. The larger scroll bar using map mode provides an at-a-glance view of the code structure, unsaved changes, breakpoints, and so on.

22 Task 4: Adding Push Notifications In this task, you will learn about how easy it is to add push notifications to your Windows Store app in Visual Studio Visual Studio 2013 makes it easier to update your app tiles using mobile services, send push notifications to your Windows Store apps, and access Azure mobile services backend capabilities through integrated VS tools and a new C++ library for Azure mobile services. 1. Open the XamlSpiro.sln solution file found in the lab s Source\XamlSpiro folder. 2. The XamlSpiro Windows Store app is a sample that shows one way to combine the use of DirectX and XAML. In addition, it has integrated the use of Windows Azure Mobile Services and the Windows Push Notification service to add a toast notification on app startup and each time the user makes a selection and submits a string to the service. 3. Although the work involved in setting up a service and wiring up push notifications has already been performed ahead of time, go ahead and select Project Add Push Notification to view the new wizard that is new to Visual Studio The first screen of the Add Push Notification wizard describes the tasks that can be walked through using this new wizard. This wizard makes it much easier to complete some of the tedious legwork and plumbing code that was previously necessary.

23 5. In case it is tough to read the text in the screenshot of the wizard start screen above, it states that the following tasks will be accomplished by completing this wizard: - Your app will be associated with the Windows Store to acquire a push notification channel URI. - Code will be added to your project for sending the push notification channel URI to your Windows Azure Mobile Service. - Your Windows Azure Mobile Service will be modified to enable it to push notifications to your app through the Windows Notification Service. - To enable support for Live Connect sign-on, the redirect domain URI value of your Windows Azure Mobile Service will be transferred to the Live Connect Developer Center. 6. Click the Cancel button. 7. Open the pushtechreadyservicemobileservice.cpp file from the XamlSpiro project (in services\mobile services\pushtechreadyservice folder). This code returns a client instance for the mobile service, which in turn utilizes C++ Azure Mobile SDK that is shipped with Visual Studio Note: A working mobile service URI and application key are already filled in for you.

24 8. Now open the pushtechreadyservicepush.cpp file from the XamlSpiro project. This code is responsible for setting up the push notification channel through which the app receives notifications from the Windows Push Notification Service (WNS). It is also responsible for sending a test string selected by the user to the mobile service, which in turn will send out a push notification to the app with a message that includes the test string. 9. Press F5 to start the application. 10. The application will show a message asking you to load some photos.

25 11. When the application first loads, the push notification channel is setup and within a few seconds you should see a toast notification appear in the top-right corner of the screen that says Welcome! 12. Right-click to open the bottom app bar and then click the Load Images button. 13. Navigate to the lab s Source\XamlSpiro\Pictures folder and then click the Select All link. 14. Click the Open button to use the selected pictures.

26 15. Once the pictures have been opened, you should see one of the selected images shown in the app. All of the selected images are being rendered in a 3D wheel using DirectX. Hold the mouse over the left or right side of the screen to show the controls that can be used for animating the wheel rotation, and then click to spin. 16. After the wheel stop spinning, one of the images should be selected (mostly centered and visible on the screen). Right-click to show the bottom app bar once again, and then click the Accept button. 17. The text that is shown in the selected image will be sent to the mobile service, which in turn will push out a notification to the app.

27 Formatted: Font: Bold 18. Close the app by pressing Alt+F4. To return to the Desktop, either press Win+D or select the Desktop tile on the Start screen. 19. The C++ Azure Mobile SDK provides a set of REST APIs that are used to access and change table data and retrieve authenticated login information. These REST APIs are implemented using the C++ REST SDK, which provides an asynchronous, cross-platform way to send HTTP requests and handle responses, work with JSON, and asynchronously work with streams and stream buffers. The latest version of the C++ REST SDK, which also goes by the codename Casablanca, can be found on CodePlex at casablanca.codeplex.com, or by searching for the latest NuGet package. 20. If you are interested in learning more about creating and working with mobile services, adding push notifications, and authentication for C++ apps, please see this documentation on MSDN. Task 5: Visual C++ Rename Refactoring In this task, you will install the Visual C++ Refactoring extension from the Visual Studio Gallery and then perform a simple rename refactoring operation. 1. Download and install the Visual C++ Refactoring extension from the Visual Studio Gallery. Open Tools->Extensions and Updates and search online for the extension. Note: this extension was created by the Visual C++ IDE team from Microsoft. 2. After successfully installing the extension, you might need to restart Visual Studio oopen the RenameDemo.sln solution file found in the lab s Source\RenameDemo folder Open the MyClass.cpp source file and note that it has a function named DoSomething. This is not a very descriptive name. Right-click on the function name and then select Refactor Rename.

28 4.5. In the C++ Rename dialog box, enter a new name of ShowMessage and then click OK Once you are satisfied with the preview of changes, click Apply.

29 6.7. Select Build Rebuild Solution to make sure that the project builds as expected. Task 6: PdbProject for Visual Studio 2013 In this task, you will install the PdbProject for Visual Studio 2013 extension from the Visual Studio Gallery and then walk through the process of constructing a project file from a.pdb file plus source code. 1. Download and install the PdbProject for Visual Studio 2013 extension from the Visual Studio Gallery. Note: this extension was created by the Visual C++ IDE team from Microsoft and can currently only handle native sources. 2. Again, you might be asked to restart Visual Studio.

30 2.3. Many C++ projects aren t built using Visual Studio and vcxproj files, but rather by using a legacy build tool. In this case, the only way to utilize features such as tag browsing, IntelliSense, and object browsing is to create a new project from existing code and then manually add the source Launch a new instance of Visual Studio Select File Open Project/Solution Navigate to the lab s Source\Legacy folder and change the extension dropdown to search for just PDB Project files (*.pdb). Click the Open button After selecting the PDB file, the PDB Conversion Wizard window will open. This window is used to map source referenced found in the PDB file back to source code.

31 7.8. Notice that Visual Studio SDK paths are automatically resolved, as they match the local machine paths exactly There are also a number of unresolved paths for source files as the machine you are working on does not have the same paths used when the executable was originally built. In this case, we need to do a manual folder mapping to resolve. Select the ellipses button in the Browse column for the original folder that includes the legacy folder at the end of the path In the PDB Generator dialog box, navigate to the lab s Source\Repository folder and click Select Folder With the manual folder mapping in place, the original filenames from the selected PDB file should automatically be resolved by name to their selected location.

32 Click the Finish button In the Save As dialog box, click Save to save the project file The new project should now be opened in Visual Studio Although it will not build as-is, you can now navigate the source and use some of the IDE features like IntelliSense. Open Lecacy.cpp and then hold the mouse over the call to Function().

33 To continue learning about all of the improvements and updates made in 2013 for C++ developers, please see this MSDN article. This article highlights all of the compiler and language improvements, breaking changes to be aware of, library enhancements, C++ application performance improvements, diagnostics enhancements, and more.

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

Using Microsoft Visual Studio 2010. API Reference

Using Microsoft Visual Studio 2010. API Reference 2010 API Reference Published: 2014-02-19 SWD-20140219103929387 Contents 1... 4 Key features of the Visual Studio plug-in... 4 Get started...5 Request a vendor account... 5 Get code signing and debug token

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

Hands-On Lab. Embracing Continuous Delivery with Release Management for Visual Studio 2013. Lab version: 12.0.21005.1 Last updated: 12/11/2013

Hands-On Lab. Embracing Continuous Delivery with Release Management for Visual Studio 2013. Lab version: 12.0.21005.1 Last updated: 12/11/2013 Hands-On Lab Embracing Continuous Delivery with Release Management for Visual Studio 2013 Lab version: 12.0.21005.1 Last updated: 12/11/2013 CONTENTS OVERVIEW... 3 EXERCISE 1: RELEASE MANAGEMENT OVERVIEW...

More information

Using Application Insights to Monitor your Applications

Using Application Insights to Monitor your Applications Using Application Insights to Monitor your Applications Overview In this lab, you will learn how to add Application Insights to a web application in order to better detect issues, solve problems, and continuously

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers 1 INTRODUCTION GOAL OBJECTIVES MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS OVERVIEW

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

Colligo Email Manager 6.2. Offline Mode - User Guide

Colligo Email Manager 6.2. Offline Mode - User Guide 6.2 Offline Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 3 Checking for Updates 4 Updating Your License

More information

How To Use Senior Systems Cloud Services

How To Use Senior Systems Cloud Services Senior Systems Cloud Services In this guide... Senior Systems Cloud Services 1 Cloud Services User Guide 2 Working In Your Cloud Environment 3 Cloud Profile Management Tool 6 How To Save Files 8 How To

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand

More information

Getting Started with Vision 6

Getting Started with Vision 6 Getting Started with Vision 6 Version 6.9 Notice Copyright 1981-2009 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop

More information

Snagit 10. Getting Started Guide. March 2010. 2010 TechSmith Corporation. All rights reserved.

Snagit 10. Getting Started Guide. March 2010. 2010 TechSmith Corporation. All rights reserved. Snagit 10 Getting Started Guide March 2010 2010 TechSmith Corporation. All rights reserved. Introduction If you have just a few minutes or want to know just the basics, this is the place to start. This

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame...

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame... Using Microsoft Office 2003 Introduction to FrontPage Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Fall 2005 Contents Launching FrontPage... 3 Working with

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

WebPlus X7. Quick Start Guide. Simple steps for designing your site and getting it online.

WebPlus X7. Quick Start Guide. Simple steps for designing your site and getting it online. WebPlus X7 Quick Start Guide Simple steps for designing your site and getting it online. In this guide, we will refer to specific tools, toolbars, tabs, or options. Use this visual reference to help locate

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

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide

Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide Education Solutions Development, Inc. APECS Navigation: Business Systems Getting Started Reference Guide March 2013 Education Solutions Development, Inc. What s Inside The information in this reference

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

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

OneDrive for Business User Guide

OneDrive for Business User Guide OneDrive for Business User Guide Contents About OneDrive for Business and Office 365... 2 Storing University Information in the Cloud... 2 Signing in... 2 The Office 365 Interface... 3 The OneDrive for

More information

QUANTIFY INSTALLATION GUIDE

QUANTIFY INSTALLATION GUIDE QUANTIFY INSTALLATION GUIDE Thank you for putting your trust in Avontus! This guide reviews the process of installing Quantify software. For Quantify system requirement information, please refer to the

More information

Handout: Word 2010 Tips and Shortcuts

Handout: Word 2010 Tips and Shortcuts Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW

More information

Increasing Productivity and Collaboration with Google Docs. Charina Ong Educational Technologist charina.ong@nus.edu.sg

Increasing Productivity and Collaboration with Google Docs. Charina Ong Educational Technologist charina.ong@nus.edu.sg Increasing Productivity and Collaboration with Google Docs charina.ong@nus.edu.sg Table of Contents About the Workshop... i Workshop Objectives... i Session Prerequisites... i Google Apps... 1 Creating

More information

For Introduction to Java Programming, 5E By Y. Daniel Liang

For Introduction to Java Programming, 5E By Y. Daniel Liang Supplement H: NetBeans Tutorial For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Getting Started with NetBeans Creating a Project Creating, Mounting,

More information

Building an ASP.NET MVC Application Using Azure DocumentDB

Building an ASP.NET MVC Application Using Azure DocumentDB Building an ASP.NET MVC Application Using Azure DocumentDB Contents Overview and Azure account requrements... 3 Create a DocumentDB database account... 4 Running the DocumentDB web application... 10 Walk-thru

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information

Citrix EdgeSight for Load Testing User s Guide. Citrix EdgeSight for Load Testing 3.8

Citrix EdgeSight for Load Testing User s Guide. Citrix EdgeSight for Load Testing 3.8 Citrix EdgeSight for Load Testing User s Guide Citrix EdgeSight for Load Testing 3.8 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.

More information

Baylor Secure Messaging. For Non-Baylor Users

Baylor Secure Messaging. For Non-Baylor Users Baylor Secure Messaging For Non-Baylor Users TABLE OF CONTENTS SECTION ONE: GETTING STARTED...4 Receiving a Secure Message for the First Time...4 Password Configuration...5 Logging into Baylor Secure Messaging...7

More information

EM L18 Managing ios and Android Mobile Devices with Symantec Mobile Management Hands-On Lab

EM L18 Managing ios and Android Mobile Devices with Symantec Mobile Management Hands-On Lab EM L18 Managing ios and Android Mobile Devices with Symantec Mobile Management Hands-On Lab Description The Symantec Mobile Management platform continues to expand it s offering with new support for native

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

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

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202 1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street sales@fourwindsinteractive.com Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation

More information

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM)

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) Microsoft BitLocker Administration and Monitoring (MBAM) provides a simplified administrative

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

More information

POOSL IDE User Manual

POOSL IDE User Manual Embedded Systems Innovation by TNO POOSL IDE User Manual Tool version 3.0.0 25-8-2014 1 POOSL IDE User Manual 1 Installation... 5 1.1 Minimal system requirements... 5 1.2 Installing Eclipse... 5 1.3 Installing

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

DEPLOYING A VISUAL BASIC.NET APPLICATION

DEPLOYING A VISUAL BASIC.NET APPLICATION C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

Create Database Tables 2

Create Database Tables 2 Create Database Tables 2 LESSON SKILL MATRIX Skill Exam Objective Objective Number Creating a Database Creating a Table Saving a Database Object Create databases using templates Create new databases Create

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Setting up and Automating a MS Dynamics AX Job in JAMS

Setting up and Automating a MS Dynamics AX Job in JAMS Setting up and Automating a MS Dynamics AX Job in JAMS Introduction... 1 Creating a User for the AX Job Execution... 2 Setting up the AX Job... 4 Create a New folder... 4 Adding a new Dynamics AX Job using

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu)

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Updated on 10/17/2014 Table of Contents About... 4 Who Can Use It... 4 Log into Ingeniux... 4 Using Ingeniux

More information

Password Memory 6 User s Guide

Password Memory 6 User s Guide C O D E : A E R O T E C H N O L O G I E S Password Memory 6 User s Guide 2007-2015 by code:aero technologies Phone: +1 (321) 285.7447 E-mail: info@codeaero.com Table of Contents Password Memory 6... 1

More information

PROPHIX Reporting What is PROPHIX?

PROPHIX Reporting What is PROPHIX? ALA Financial System PROPHIX Reporting What is PROPHIX? ALA s Financial System upgrade is comprised of three new software solutions: 1. Bill Payment Process (BPP), a Microsoft SharePoint web-based platform

More information

ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE

ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE ThirtySix Software WRITE ONCE. APPROVE ONCE. USE EVERYWHERE. www.thirtysix.net SMARTDOCS 2014.1 SHAREPOINT CONFIGURATION GUIDE THIRTYSIX SOFTWARE UPDATED MAY 2014 Table of Contents Table of Contents...

More information

Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1

Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1 Hands-On Lab Web Development in Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: USING HTML CODE SNIPPETS IN VISUAL STUDIO 2010... 6 Task 1 Adding

More information

Grapevine Mail User Guide

Grapevine Mail User Guide Grapevine Mail User Guide Table of Contents Accessing Grapevine Mail...2 How to access the Mail portal... 2 How to login... 2 Grapevine Mail user guide... 5 Copying your contacts to the new Grapevine Mail

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

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

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal JOIN TODAY Go to: www.oracle.com/technetwork/java OTN Developer Day Oracle Fusion Development Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal Hands on Lab (last update, June

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

Cloud Administration Guide for Service Cloud. August 2015 E65820-01

Cloud Administration Guide for Service Cloud. August 2015 E65820-01 Cloud Administration Guide for Service Cloud August 2015 E65820-01 Table of Contents Introduction 4 How does Policy Automation work with Oracle Service Cloud? 4 For Customers 4 For Employees 4 Prerequisites

More information

Windows Server Update Services 3.0 SP2 Step By Step Guide

Windows Server Update Services 3.0 SP2 Step By Step Guide Windows Server Update Services 3.0 SP2 Step By Step Guide Microsoft Corporation Author: Anita Taylor Editor: Theresa Haynie Abstract This guide provides detailed instructions for installing Windows Server

More information

Creating a Poster in PowerPoint 2010. A. Set Up Your Poster

Creating a Poster in PowerPoint 2010. A. Set Up Your Poster View the Best Practices in Poster Design located at http://www.emich.edu/training/poster before you begin creating a poster. Then in PowerPoint: (A) set up the poster size and orientation, (B) add and

More information

IBM Information Server

IBM Information Server IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01 IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01

More information

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE Contents Introduction... 3 Step 1 Create Azure Components... 5 Step 1.1 Virtual Network... 5 Step 1.1.1 Virtual Network Details... 6 Step 1.1.2 DNS Servers

More information

Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems A Sexy UI for Progress OpenEdge using JSDO and Kendo UI Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

Colligo Email Manager 6.0. Offline Mode - User Guide

Colligo Email Manager 6.0. Offline Mode - User Guide 6.0 Offline Mode - User Guide Contents Colligo Email Manager 1 Key Features 1 Benefits 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License Key 3 Managing SharePoint

More information

Bitrix Site Manager 4.1. User Guide

Bitrix Site Manager 4.1. User Guide Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015

Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015 Appspace 5.X Reference Guide (Digital Signage) Updated on February 9, 2015 1 TABLE OF CONTENTS 2 What is Appspace For Digital Signage... 4 3 Access Appspace... 4 4 Best Practices and Notes... 4 5 Appspace

More information

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Backup Assistant User Guide NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Liability Disclaimer NEC Unified Solutions, Inc. reserves the right to change the specifications, functions,

More information

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505

Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 Embroidery Fonts Plus ( EFP ) Tutorial Guide Version 1.0505 1 Contents Chapter 1 System Requirements.................. 3 Chapter 2 Quick Start Installation.................. 4 System Requirements................

More information

Nintex Forms 2013 Help

Nintex Forms 2013 Help Nintex Forms 2013 Help Last updated: Friday, April 17, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

MGC WebCommander Web Server Manager

MGC WebCommander Web Server Manager MGC WebCommander Web Server Manager Installation and Configuration Guide Version 8.0 Copyright 2006 Polycom, Inc. All Rights Reserved Catalog No. DOC2138B Version 8.0 Proprietary and Confidential The information

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

Colligo Email Manager 6.0. Connected Mode - User Guide

Colligo Email Manager 6.0. Connected Mode - User Guide 6.0 Connected Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License

More information

User Guide. emoney for Outlook

User Guide. emoney for Outlook User Guide emoney for Outlook Table of Contents INTRODUCTION... 2 SYSTEM REQUIREMENTS... 2 Required Installations... 2 INSTALLATION PROCESS... 2 FIRST TIME SETUP... 8 EMONEY CLIENT PANE... 17 Client Contact

More information

About the HealthStream Learning Center

About the HealthStream Learning Center About the HealthStream Learning Center HealthStream Learning Center TM Administrator access to features and functions described in the HLC Help documentation is dependent upon the administrator s role

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

Getting Started with Mamut Online Desktop

Getting Started with Mamut Online Desktop // Mamut Business Software Getting Started with Mamut Online Desktop Getting Started with Mamut Online Desktop Contents Welcome to Mamut Online Desktop... 3 Getting Started... 6 Status... 23 Contact...

More information

Microsoft FrontPage 2003

Microsoft FrontPage 2003 Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

More information

LogMeIn Network Console Version 8 Getting Started Guide

LogMeIn Network Console Version 8 Getting Started Guide LogMeIn Network Console Version 8 Getting Started Guide April 2007 1. About the Network Console... 2 2. User Interface...2 3. Quick Start... 2 4. Network & Subnet Scans...3 5. Quick Connect...3 6. Operations...

More information

VMware Horizon FLEX User Guide

VMware Horizon FLEX User Guide Horizon FLEX 1.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this

More information

Cisco Jabber for Windows

Cisco Jabber for Windows Get started with Jabber Cisco Jabber for Windows Cisco Jabber is a communication tool that allows you access to presence, instant messaging (IM), voice, video, voice messaging, desktop sharing, and conferencing.

More information

WebPlus X8. Quick Start Guide. Simple steps for designing your site and getting it online.

WebPlus X8. Quick Start Guide. Simple steps for designing your site and getting it online. WebPlus X8 Quick Start Guide Simple steps for designing your site and getting it online. In this guide, we will refer to specific tools, toolbars, tabs, or options. Use this visual reference to help locate

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX

INSTALL AND CONFIGURATION GUIDE. Atlas 5.1 for Microsoft Dynamics AX INSTALL AND CONFIGURATION GUIDE Atlas 5.1 for Microsoft Dynamics AX COPYRIGHT NOTICE Copyright 2012, Globe Software Pty Ltd, All rights reserved. Trademarks Dynamics AX, IntelliMorph, and X++ have been

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual 2013 SPHOL326: Designing a SharePoint 2013 Site Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references,

More information

Novell Filr 1.0.x Mobile App Quick Start

Novell Filr 1.0.x Mobile App Quick Start Novell Filr 1.0.x Mobile App Quick Start February 2014 Novell Quick Start Novell Filr allows you to easily access all your files and folders from your desktop, browser, or a mobile device. In addition,

More information

User guide. Business Email

User guide. Business Email User guide Business Email June 2013 Contents Introduction 3 Logging on to the UC Management Centre User Interface 3 Exchange User Summary 4 Downloading Outlook 5 Outlook Configuration 6 Configuring Outlook

More information

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro Information Technology Services Outreach and Distance Learning Technologies Copyright 2012 KSU Department of Information Technology Services This

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Database Forms and Reports Tutorial

Database Forms and Reports Tutorial Database Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information