Setting up a Project and Debugging with Visual Studio

Size: px
Start display at page:

Download "Setting up a Project and Debugging with Visual Studio"

Transcription

1 Setting up a Project and Debugging with Visual Studio Contents Setup Visual Studio to compile a DLL Step 1: Install Visual Studio Express 2013 for Windows Desktop Step 2: Create a New Project Step 3: Add source files to project Step 4: Compile the model Step 5: Debug vs Release Debugging using Visual Studio Express 2013 for Windows Desktop Step 1: Configure Visual C++ Expression edition for debugging Step 2: Use Breakpoint and Watch Value Step 4: Use conditional breakpoint Setup Visual Studio to compile a DLL Setting up a project in Visual Studio allows you to compile your contact models, particle body force models and custom factories to a DLL without the need to use the command line. It also has advantages for debugging such as attaching to the EDEM process and interrogating values passed to your model on the fly. Step 1: Install Visual Studio Express 2013 for Windows Desktop If you haven t already, you can download Visual Studio Express from this location: To download it you will need to use a Microsoft Account, if you don t have one you can create it providing your name, valid address and introducing a password.

2 Step 2: Create a New Project 1. After opening Visual Studio Express 2013, go to File > New Project... Select Win32 Project in the Visual C++ templates list 2. Enter a project name and location and press OK (In this demonstration the project is called HM_Contact_Model and is located at C:\API\Hertz- Mindlin\ 3. On the next page go to Application Settings Compiling Guide DEM Solutions Page 2 of 13

3 4. Select DLL 5. Select Empty Project 6. Uncheck Security Development Lifecycle (SDL). This option turns some warnings into errors. For example the use of the function strcpy which is considered unsafe will trigger an error instead of a warning. Since many shared API models available on DEM Solutions forum use strcpy, we recommend not checking this option. 7. Press Finish Step 3: Add source files to project There are many example source files available through the EDEM User Forum, for this demonstration we are going to use the Hertz-Mindlin Contact Model which is available here: The packaged zip file already contains the whole visual studio project. For the purpose of this presentation we will only need some of the source files. 1. Copy the following source files from the src folder: a. CHertzHindlin.cpp b. CHertzMindlin.h c. HertzMindlin.cpp 2. Paste those source files to your newly created project folder; Visual Studio will have already created other files in the folder. (In this demonstration, the project folder is C:\API\Hertz-Mindlin\HM_Contact_Model) Compiling Guide DEM Solutions Page 3 of 13

4 3. Add the *.cpp files to the Visual Studio project. In Visual Studio > Solution Explorer > Source Files (right click) > Add > Existing Item... (You can also drag and drop) Select both *.cpp files and press OK Compiling Guide DEM Solutions Page 4 of 13

5 4. Add the header files (*.h) to the Visual Studio project. In Visual Studio > Solution Explorer > Header Files (right click) > Add > Existing Item... Select both *.h files and press OK Compiling Guide DEM Solutions Page 5 of 13

6 5. The example source code files have now been added but other EDEM header files are needed before the contact model will compile to a DLL. The additional header files required are installed on your system by the EDEM installer and will be at the following location: C:\Program Files\DEM Solutions\EDEM 2.X\src\Api (where X is the version of EDEM you are currently using From the Core folder copy the following files to your project directory: ApiIds.h ApiTypes.h IApi.h IApiManager_1_0.h ICustomPropertyDataApi_1_0 ICustomPropertyManagerApi_1_0 PluginConstants.h From the ContactModels folder copy the following files to your project directory: IPluginContactModel.h IPluginContactModelV2_3_0.h PluginContactModelCore.h From the C:\Program Files\DEM Solutions\EDEM 2.X\src\Misc, copy the Helpers.h file. It contains some mathematical operators such as vector and matrix and their associated operations (cross product, matrix inversion ) that can be used easily in your API model. Note: there are additional header files in each folder but they aren t required for this project. If you aren t sure which header files you need then add all of them to your project, the compiler will simply ignore any files it doesn t need. Besides when creating a custom body force or a custom factory, you will need to copy the header files respectively from the ParticleBodyForce or Factories folders. 6. Add these additional header files to your project as before. The solution explorer should look like this: Compiling Guide DEM Solutions Page 6 of 13

7 Step 4: Compile the model 1. The first step consists in setting up the compiler to compile in 64 bits. To do that open the configuration: 2. Create a new solution platform: Compiling Guide DEM Solutions Page 7 of 13

8 3. Select x64 and press OK. 4. You can compile your dll by clicking ion Build > Build Solution Compiling Guide DEM Solutions Page 8 of 13

9 If successful, the Output window at the bottom of Visual Studio will confirm Build: 1 succeeded and it will also give you the location of the newly created *.DLL. (Note: If the build fails you will also be given useful information in this window as to why it has failed. Always start with the first error message in the list as this is also likely to be the cause of many of the following errors). In case you made modification to the model and you want to create a new DLL, select Build > Rebuild Solution to recreate a new DLL. Step 5: Debug vs Release In the previous step we compiled the library in Debug mode. This mode includes additional code in the library which allows Visual Studio to interrogate the library while running and can be very useful while modifying the code. Once the library is complete and the library is being used to run simulations this code is no longer required and will slow down the performance of EDEM. To remove this additional code and to allow the compiler to optimise the library for performance, change Visual Studio to Release mode. You need to re-compile after changing the mode ( Debug > Build Solution ). (Note: The release build of your library will be created in a different location to the debug version so make sure to check the output window for details.) Compiling Guide DEM Solutions Page 9 of 13

10 Debugging using Visual Studio Express 2013 for Windows Desktop Step 1: Configure Visual C++ Expression edition for debugging 1. Make sure EDEM is running and click on Debug > Attach to Process 2. Select edem.exe in the list and click on Attach. If the process has been done correctly at bottom of Visual Studio Express 2013 will be similar to: 3. Load the library into EDEM a. Select Tools > Options > File Locations in EDEM and be sure the location point to the folder containing the debug version of your dll. In our case C:/API/Hertz-Mindlin/HM_Contact_Model/x64/Debug/ b. Load a simulation that is using the Hertz-Mindlin built-in contact model or setup a new one. Compiling Guide DEM Solutions Page 10 of 13

11 c. In both Particle to Particle and Particle to Geometry Interaction in the Physics section of the Creator, remove the Hertz-Mindlin (no slip) contact model and click on the + button our API model, HM_Contact_Model, appears at the bottom of the list. Add it in both case. d. Similarly custom body forces are added in the Particle Body Force interaction while custom factories are added in the Factories tab of the creator by clicking on the Transfer button. Make you have also selected the appropriate folder File Locations. Step 2: Use Breakpoint and Watch Value 1. In Visual Studio, you can add a break point by clicking on left hand side of the source code window. The simulation will stop once the break point is encountered 2. Make sure your run it using 1 core before running the simulation in EDEM. This prevents the break points to be hit by different thread which can be confusing when debugging. 3. Once the simulation has stopped, you can execute one instruction at a time by pressing the F10 key or the button. The red point indicates the breakpoint while the yellow arrow indicates the next line to be executed when F10 is pushed. Tip: In case that your break point are a symbol instead of, it means that the DLL load in the EDEM is not the same as the code in the project, so the code won t stop in this points when you run the simulation. Make sure that you are loading the correct DLL (section Step 1-3.a) into Compiling Guide DEM Solutions Page 11 of 13

12 EDEM and also that you have attached to the correct EDEM deck in case you have multiple EDEM decks open in the GUI. e.g Load Release DLL instead of Debug 4. It is possible to see the value contained by a variable. To do that, hovering it with your mouse or right click on it and click on Add to watch to add it to your watch variable: Here we watch the double variable time and the CSimple3DVector relvel. A CSimple3DVector is a vector object defined in the Helper.h file mentioned previously. By expanding it, we can see the three components X, Y and Z of the vector. A variable is in red when its the value has changed since the last time the simulation has paused. In the present case relvel was added to the watch variables before pressing the F10 key. Since the last instruction that has been executed has modified revel, it shows in red. However the variable time has not changed and it is in black. 5. If you Press F5, the simulation will run until the breakpoint is hit again, in other word when another computation of the contact force is required. Step 4: Use conditional breakpoint 1. The use of conditional break point allows you to stop the stimulation at a break point under a certain condition. For instance in the following screenshot, the condition is that the value of the variable time is more than 1 (second). To enable breakpoint condition, right click on a breakpoint and click Condition. Compiling Guide DEM Solutions Page 12 of 13

13 2. Press F5 The simulation has stopped at the first time step after 1s where a contact is detected. Both time and relvel are in red since their values have changed compared so the previous time the simulation had paused (in the current example, relvel will only be initialized once the next instruction is executed hence the odd numerical values for the X, Y and Z components). 3. You can click on the square button to stop the debugging. The simulation will continue normally. Compiling Guide DEM Solutions Page 13 of 13

EDEM Dynamics Coupling Quick Start Guide

EDEM Dynamics Coupling Quick Start Guide EDEM Dynamics Coupling Quick Start Guide Table of Contents Introduction -------------------------------------------------------------------------------------------------------------- 2 EDEM version and

More information

How to build Simbody 2.2 from source on Windows

How to build Simbody 2.2 from source on Windows How to build Simbody 2.2 from source on Windows Michael Sherman, 30 Mar 2011 (minor revision 27 July 2011) Simbody 2.2 was re-engineered to be much easier to build from source than previous releases. One

More information

Introduction. Key features and lab exercises to familiarize new users to the Visual environment

Introduction. Key features and lab exercises to familiarize new users to the Visual environment Introduction Key features and lab exercises to familiarize new users to the Visual environment January 1999 CONTENTS KEY FEATURES... 3 Statement Completion Options 3 Auto List Members 3 Auto Type Info

More information

EDEM Tutorial Bonded Particles Model

EDEM Tutorial Bonded Particles Model EDEM Tutorial Bonded Particles Model September 2017 Revision Copyrights and Trademarks Copyright 2017 DEM Solutions Ltd. All rights reserved. Information in this document is subject to change without notice.

More information

Winshuttle STUDIO 11 TRANSACTION Developer Basic Training. Copyright ADSOTECH Scandinavia Oy

Winshuttle STUDIO 11 TRANSACTION Developer Basic Training. Copyright ADSOTECH Scandinavia Oy Winshuttle STUDIO 11 TRANSACTION Developer Basic Training 1 Copyright ADSOTECH Scandinavia Oy 2016 2014 Contents Winshuttle Studio 11 TRANSACTION Developer Basic Training Creating the First Script Problem

More information

Debugging in Small Basic is the process of analysing a program to detect and fix errors or improve functionality in some way.

Debugging in Small Basic is the process of analysing a program to detect and fix errors or improve functionality in some way. How to Debug Introduction Debugging in Small Basic is the process of analysing a program to detect and fix errors or improve functionality in some way. In order to debug a program it must first compile

More information

Required Setup for 32-bit Applications

Required Setup for 32-bit Applications 1 of 23 8/25/2015 09:30 Getting Started with MASM and Visual Studio 2012 Updated 4/6/2015. This tutorial shows you how to set up Visual Studio 2012 (including Visual Studio 2012 Express for Windows Desktop)

More information

Getting Started with Visual Studio

Getting Started with Visual Studio Getting Started with Visual Studio Visual Studio is a sophisticated but easy to use integrated development environment (IDE) for C++ (and may other languages!) You will see that this environment recognizes

More information

EDEM Tutorial: Heat Transfer

EDEM Tutorial: Heat Transfer EDEM Tutorial: Heat Transfer Copyrights and Trademarks Copyright 2015 DEM Solutions. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

TREX Set-Up Guide: Creating a TREX Executable File for Windows

TREX Set-Up Guide: Creating a TREX Executable File for Windows TREX Set-Up Guide: Creating a TREX Executable File for Windows Prepared By: HDR 1 International Boulevard, 10 th Floor, Suite 1000 Mahwah, NJ 07495 May 13, 2013 Creating a TREX Executable File for Windows

More information

How to debug Wcem.dll with.net Studio

How to debug Wcem.dll with.net Studio TYX Corporation Productivity Enhancement Systems Reference TYX_0051_17 Revision 1.0 Document dotnetdebug.doc Date June 21, 2005 How to debug Wcem.dll with.net Studio 1. Studio Version: This document is

More information

ECE 103 In-Class Exercise L1 Guide

ECE 103 In-Class Exercise L1 Guide ECE 10 In-Class Exercise L1 Guide Hardware and software needed to complete this lab exercise LabJack U, USB cable, and screwdriver (Qty 1) Red LED (Light Emitting Diode) Short lead is cathode (negative)

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

WINDOW 7 & 8: Detailed install instructions

WINDOW 7 & 8: Detailed install instructions Pg. 1 of 16 These instructions are written from the perspective of someone who has very minimal computer skills. It is a detailed step by step process in screenshot format using Firefox web browser. Other

More information

Tutorial : creating a Max/MSP external project for Windows using Visual Studio

Tutorial : creating a Max/MSP external project for Windows using Visual Studio Tutorial : creating a Max/MSP external project for Windows using Visual Studio Version 1.0 (17 th July 2011) by Benoit Bouchez Reviewed on 5 th November 2013 for Max 6 SDK before publishing on Cycling'74

More information

WRITING CONSOLE APPLICATIONS IN C

WRITING CONSOLE APPLICATIONS IN C WRITING CONSOLE APPLICATIONS IN C with Visual Studio 2017 A brief step-by-step primer for ME30 Bryan Burlingame, San José State University The Visual Studio 2017 Community Edition is a free integrated

More information

Chapter 12 Visual Program Debugger

Chapter 12 Visual Program Debugger Chapter 12 Visual Program Debugger In the previous chapter on programs a section titled Getting programs to do what you want discussed using the log to trace how programs execute. That is a useful technique

More information

Saleae Device SDK Starting a Device SDK Project on Windows Starting a Device SDK Project on Linux... 7

Saleae Device SDK Starting a Device SDK Project on Windows Starting a Device SDK Project on Linux... 7 Contents Starting a Device SDK Project on Windows... 2 Starting a Device SDK Project on Linux... 7 Debugging your Project with GDB... 9 Starting a Device SDK Project on Mac... 11 Build Script / Command

More information

Intallation and setup of Fldigi and NBEMS

Intallation and setup of Fldigi and NBEMS Intallation and setup of Fldigi and NBEMS This covers setting up the NBEMS software only. It does NOT cover setting up a soundcard interface simply because there are too many combinations of rigs and interfaces

More information

Getting Started with Keil µvision 3 and C51

Getting Started with Keil µvision 3 and C51 Getting Started with Keil µvision 3 and C51 1. Create a Project: Start uvision3. Go to Project->New µvision Project on the µvision3 window. Then enter the name of your project and select a location. Click

More information

Creating a new CDC policy using the Database Administration Console

Creating a new CDC policy using the Database Administration Console Creating a new CDC policy using the Database Administration Console When you start Progress Developer Studio for OpenEdge for the first time, you need to specify a workspace location. A workspace is a

More information

Configuring Visual Studio 2017 with SFML Game Engine

Configuring Visual Studio 2017 with SFML Game Engine Configuring Visual Studio 2017 with SFML Game Engine A. Download the SFML Library file from https://www.sfml-dev.org/. a. Go to the site https://www.sfml-dev.org/ b. Click the Download link c. Click the

More information

Supplement: Visual C++ Debugging

Supplement: Visual C++ Debugging Supplement: Visual C++ Debugging For Introduction to C++ Programming By Y. Daniel Liang Note: The screen shots are taken from VC++ 2010. It is the same for the later version. 1 Introduction The debugger

More information

Visual C++ Tutorial. For Introduction to Programming with C++ By Y. Daniel Liang

Visual C++ Tutorial. For Introduction to Programming with C++ By Y. Daniel Liang 1 Introduction Visual C++ Tutorial For Introduction to Programming with C++ By Y. Daniel Liang Visual C++ is a component of Microsoft Visual Studio 2012 for developing C++ programs. A free version named

More information

Installing and getting started with Visual Studio for C programming in Windows.

Installing and getting started with Visual Studio for C programming in Windows. Installing and getting started with Visual Studio for C programming in Windows. 1. Download the free ("community") version VisualStudio tools. Go to https:// www.visualstudio.com/vs/community/. Choose

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2018.11 02 CHAPTER 11 EVENT ANALYSIS WITH TRACEX CONTENTS 11 EVENT ANALYSIS WITH TRACEX 03 11.1 An Introduction to TraceX 03 11.2 Built-in Views and

More information

Installing Geant4 v9.5 for Windows

Installing Geant4 v9.5 for Windows Installing Geant4 v9.5 for Windows A step-by-step guide for Windows XP/Vista/7 using cmake and Visual C++ 2009 / 2010 Daniel Brandt 6 April 2012 0. Introduction and Requirements This document provides

More information

CS 150 Lab 3 Arithmetic and the Debugger. Lab 3.0 We are going to begin using the Visual Studio 2017 debugger to aid with debugging programs.

CS 150 Lab 3 Arithmetic and the Debugger. Lab 3.0 We are going to begin using the Visual Studio 2017 debugger to aid with debugging programs. CS 150 Lab 3 Arithmetic and the Debugger The main objective of today s lab is to use some basic mathematics to solve a few real world problems. In doing so, you are to begin getting accustomed to using

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

How to configure the Matlab interface

How to configure the Matlab interface How to configure the Matlab interface 1. MATLAB must be installed For step 2 (required for MATLAB versions 2009b and over), we need to know whether the 32-bit or 64-bit version of MATLAB is installed.

More information

How to Add a Text Watermark to a Digital Image

How to Add a Text Watermark to a Digital Image How to Add a Text Watermark to a Digital Image Placing a watermark on pictures that you plan to publish to the web will identify them as your own work and discourage people from stealing your works or

More information

Engr 123 Spring 2018 Notes on Visual Studio

Engr 123 Spring 2018 Notes on Visual Studio Engr 123 Spring 2018 Notes on Visual Studio We will be using Microsoft Visual Studio 2017 for all of the programming assignments in this class. Visual Studio is available on the campus network. For your

More information

Exporting MOSAIC Models to Chemcad

Exporting MOSAIC Models to Chemcad Exporting MOSAIC Models to Chemcad Gregor Tolksdorf February 9, 2016 1 Introduction This is a guide on how to export self-implemented models from MOSAIC to a Chemcad flowsheet taking advantage of Chemcad

More information

Customizing DAZ Studio

Customizing DAZ Studio Customizing DAZ Studio This tutorial covers from the beginning customization options such as setting tabs to the more advanced options such as setting hot keys and altering the menu layout. Introduction:

More information

Managing your content with the Adobe Experience Manager Template Editor. Gabriel Walt Product Manager twitter.com/gabrielwalt

Managing your content with the Adobe Experience Manager Template Editor. Gabriel Walt Product Manager twitter.com/gabrielwalt Managing your content with the Adobe Experience Manager Template Editor Gabriel Walt Product Manager twitter.com/gabrielwalt Table of Contents 1. Introduction 3 1.1 Overview 3 1.2 Prerequisites 3 2. Getting

More information

Opening Microsoft Visual Studio. On Microsoft Windows Vista and XP to open the visual studio do the following:

Opening Microsoft Visual Studio. On Microsoft Windows Vista and XP to open the visual studio do the following: If you are a beginner on Microsoft Visual Studio 2008 then you will at first find that this powerful program is not that easy to use for a beginner this is the aim of this tutorial. I hope that it helps

More information

A Tutorial for ECE 175

A Tutorial for ECE 175 Debugging in Microsoft Visual Studio 2010 A Tutorial for ECE 175 1. Introduction Debugging refers to the process of discovering defects (bugs) in software and correcting them. This process is invoked when

More information

Outline. Debugging. In Class Exercise Solution. Review If Else If. Immediate Program Errors. Function Test Example

Outline. Debugging. In Class Exercise Solution. Review If Else If. Immediate Program Errors. Function Test Example Debugging Larry Caretto Mechanical Engineering 209 Computer Programming for Mechanical Engineers February 16, 2017 Outline Review choice statements Finding and correcting program errors Debugging toolbar

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2017.12 02 CHAPTER 9 INCLUDING A REAL-TIME OPERATING SYSTEM CONTENTS 9 INCLUDING A REAL-TIME OPERATING SYSTEM 03 9.1 Threads, Semaphores and Queues

More information

DocAve Content Shield v2.2 for SharePoint

DocAve Content Shield v2.2 for SharePoint DocAve Content Shield v2.2 for SharePoint User Guide For SharePoint 2007 Revision A Issued August 2012 1 Table of Contents Table of Contents... 2 About DocAve Content Shield for SharePoint... 4 Complementary

More information

Instructions on how to approve invoices in Hogia Approval Manager

Instructions on how to approve invoices in Hogia Approval Manager Hogia Performance Management AB Instructions on how to approve invoices in Hogia Approval Manager The new Approval web is a HTML5 application. Its appearance is slightly different from the previous Silverlight

More information

The NetBeans IDE is a big file --- a minimum of around 30 MB. After you have downloaded the file, simply execute the file to install the software.

The NetBeans IDE is a big file --- a minimum of around 30 MB. After you have downloaded the file, simply execute the file to install the software. Introduction to Netbeans This document is a brief introduction to writing and compiling a program using the NetBeans Integrated Development Environment (IDE). An IDE is a program that automates and makes

More information

the NXT-G programming environment

the NXT-G programming environment 2 the NXT-G programming environment This chapter takes a close look at the NXT-G programming environment and presents a few simple programs. The NXT-G programming environment is fairly complex, with lots

More information

EECE.2160: ECE Application Programming Spring 2018 Programming Assignment #1: A Simple C Program Due Monday, 1/29/18, 11:59:59 PM

EECE.2160: ECE Application Programming Spring 2018 Programming Assignment #1: A Simple C Program Due Monday, 1/29/18, 11:59:59 PM Spring 2018 Programming Assignment #1: A Simple C Program Due Monday, 1/29/18, 11:59:59 PM 1. Introduction This program simply tests your ability to write, compile, execute, and submit programs using the

More information

A Quick Tour GETTING STARTED WHAT S IN THIS CHAPTER?

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

More information

Visual Studio.NET. Although it is possible to program.net using only the command OVERVIEW OF VISUAL STUDIO.NET

Visual Studio.NET. Although it is possible to program.net using only the command OVERVIEW OF VISUAL STUDIO.NET Chapter. 03 9/17/01 6:08 PM Page 35 Visual Studio.NET T H R E E Although it is possible to program.net using only the command line compiler, it is much easier and more enjoyable to use Visual Studio.NET.

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2010 The process of creating a project with Microsoft Visual Studio 2010.Net is similar to the process in Visual

More information

I Wish I Knew How To. Program Plugins With Xojo on Windows. By Eugene Dakin. May 2015 Edition (2.1) For Visual Studio 2013 Community Edition

I Wish I Knew How To. Program Plugins With Xojo on Windows. By Eugene Dakin. May 2015 Edition (2.1) For Visual Studio 2013 Community Edition I Wish I Knew How To Program Plugins With Xojo on Windows May Edition (2.1) For Visual Studio 2013 Community Edition By Eugene Dakin Table of Contents Chapter 1 - Introduction to Xojo and the Environment...

More information

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

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

More information

SMART Recorder. Record. Pause. Stop

SMART Recorder. Record. Pause. Stop SMART Recorder The recorder is used to record actions that are done on the interactive screen. If a microphone is attached to the computer, narration can be recorded. After the recording has been created,

More information

Department of Electrical and Computer Engineering State University of New York, Stony Brook

Department of Electrical and Computer Engineering State University of New York, Stony Brook Department of Electrical and Computer Engineering State University of New York, Stony Brook ESE501 System Specification and Modeling Tutorial on SystemC modeling using CoCentric Studio 1. Environment Setup

More information

Excel Part 3 Textbook Addendum

Excel Part 3 Textbook Addendum Excel Part 3 Textbook Addendum 1. Lesson 1 Activity 1-1 Creating Links Data Alert and Alternatives After completing Activity 1-1, you will have created links in individual cells that point to data on other

More information

ECE QNX Real-time Lab

ECE QNX Real-time Lab Department of Electrical & Computer Engineering Concordia University ECE QNX Real-time Lab User Guide Dan Li 9/12/2011 User Guide of ECE Real-time QNX Lab Contents 1. About Real-time QNX Lab... 2 Contacts...

More information

Scientific Visualization A Programming Guide using Fltk and Visual Studio

Scientific Visualization A Programming Guide using Fltk and Visual Studio Scientific Visualization A Programming Guide using Fltk and Visual Studio Programming Guide: 1. Software Environment The homework is designed to give you a good exposure to standard programming practices

More information

How to build MPTK with CMake SUMMARY

How to build MPTK with CMake SUMMARY How to build MPTK with CMake SUMMARY Read this document to learn how to build the Matching Pursuit Tool Kit on Win32 platform using CMake and Visual Studio LAYOUT 1Getting Started...2 1.1Required tools...2

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

6L00IA - Introduction to Synergy Software Package Short Version (SSP v1.2.0) Renesas Synergy Family - S7 Series

6L00IA - Introduction to Synergy Software Package Short Version (SSP v1.2.0) Renesas Synergy Family - S7 Series 6L00IA - Introduction to Synergy Software Package Short Version (SSP v1.2.0) Renesas Synergy Family - S7 Series LAB PROCEDURE Description: The purpose of this lab is to familiarize the user with the Synergy

More information

Getting Started with Eclipse for Java

Getting Started with Eclipse for Java Getting Started with Eclipse for Java Maria Litvin Phillips Academy, Andover, Massachusetts Gary Litvin Skylight Publishing 1. Introduction 2. Downloading and Installing Eclipse 3. Importing and Exporting

More information

Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio

Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio ECE2049 Embedded Computing in Engineering Design Lab 0 Introduction to the MSP430F5529 Launchpad-based Lab Board and Code Composer Studio In this lab, you will be introduced to the Code Composer Studio

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Lab 3-2: Exploring the Heap

Lab 3-2: Exploring the Heap Lab 3-2: Exploring the Heap Objectives Become familiar with the Windows Embedded CE 6.0 heap Prerequisites Completed Lab 2-1 Estimated time to complete this lab: 30 minutes Lab Setup To complete this lab,

More information

Programming Logic - Beginning

Programming Logic - Beginning Programming Logic - Beginning 152-101 Debugging Applications Quick Links & Text References Debugging Concepts Pages Debugging Terminology Pages Debugging in Visual Studio Pages Breakpoints Pages Watches

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2005 The process of creating a project with Microsoft Visual Studio 2005.Net is similar to the process in Visual

More information

Module 3: Working with C/C++

Module 3: Working with C/C++ Module 3: Working with C/C++ Objective Learn basic Eclipse concepts: Perspectives, Views, Learn how to use Eclipse to manage a remote project Learn how to use Eclipse to develop C programs Learn how to

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Part1: Building a new project with AVRstudio and avr-gcc

Part1: Building a new project with AVRstudio and avr-gcc (This document is adapted from Avr-gcc/AVRstudio beginner s guide dec. 14,2001, http://www.avrfreaks.net/avrgcc/) Part1: Building a new project with AVRstudio and avr-gcc We will open a new project in

More information

HOW TO BUILD YOUR FIRST ROBOT

HOW TO BUILD YOUR FIRST ROBOT Kofax Kapow TM HOW TO BUILD YOUR FIRST ROBOT INSTRUCTION GUIDE Table of Contents How to Make the Most of This Tutorial Series... 1 Part 1: Installing and Licensing Kofax Kapow... 2 Install the Software...

More information

PART 1: Getting Started

PART 1: Getting Started Programming in C++ / FASTTRACK TUTORIALS Introduction PART 1: Getting Started Welcome to the first article in the C++ FASTTRACK tutorial series! These tutorials are designed to take you from zero to a

More information

[Type here] ID Capture V1.0

[Type here] ID Capture V1.0 ID CAPTURE USER GUIDE V 1.0 03/02/2016 Contents Installing... 2 Installation Requirements... 2 Installation... 3 Installing USB Camera... 3 Getting Started... 4 Orientation... 5 Configuring... 6 System...

More information

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003

CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003 CST8152 Compilers Creating a C Language Console Project with Microsoft Visual Studio.Net 2003 The process of creating a project with Microsoft Visual Studio 2003.Net is to some extend similar to the process

More information

Introduction to GIS 2011

Introduction to GIS 2011 Introduction to GIS 2011 Digital Elevation Models CREATING A TIN SURFACE FROM CONTOUR LINES 1. Start ArcCatalog from either Desktop or Start Menu. 2. In ArcCatalog, create a new folder dem under your c:\introgis_2011

More information

Eclipse Setup. Opening Eclipse. Setting Up Eclipse for CS15

Eclipse Setup. Opening Eclipse. Setting Up Eclipse for CS15 Opening Eclipse Eclipse Setup Type eclipse.photon & into your terminal. (Don t open eclipse through a GUI - it may open a different version.) You will be asked where you want your workspace directory by

More information

Freescale Semiconductor Inc. Vybrid DS-5 Getting Started Guide Rev 1.0

Freescale Semiconductor Inc. Vybrid DS-5 Getting Started Guide Rev 1.0 Freescale Semiconductor Inc. Vybrid DS-5 Getting Started Guide Rev 1.0 1 Introduction... 3 2 Download DS-5 from www.arm.com/ds5... 3 3 Open DS-5 and configure the workspace... 3 4 Import the Projects into

More information

Module 4: Working with MPI

Module 4: Working with MPI Module 4: Working with MPI Objective Learn how to develop, build and launch a parallel (MPI) program on a remote parallel machine Contents Remote project setup Building with Makefiles MPI assistance features

More information

iphone Development Setup Instructions Nikhil Yadav Pervasive Health Fall 2011

iphone Development Setup Instructions Nikhil Yadav Pervasive Health Fall 2011 iphone Development Setup Instructions Nikhil Yadav Pervasive Health Fall 2011 Requirements Apple Mac Computer (Desktop or laptop) with recent snow leopard builds Apple Developer Registered Profile (create

More information

WAMSI Collaborative Work Area in ACE Project

WAMSI Collaborative Work Area in ACE Project WAMSI Collaborative Work Area in ACE Project WAMSI has created an online collaborative work space, to share general information within Nodes. There are currently three work areas, the Kimberley, Dredging

More information

COPYRIGHTED MATERIAL. Part I: Getting Started. Chapter 1: IDE. Chapter 2: Controls in General. Chapter 3: Program and Module Structure

COPYRIGHTED MATERIAL. Part I: Getting Started. Chapter 1: IDE. Chapter 2: Controls in General. Chapter 3: Program and Module Structure Part I: Getting Started Chapter 1: IDE Chapter 2: Controls in General Chapter 3: Program and Module Structure Chapter 4: Data Types, Variables, and Constants Chapter 5: Operators Chapter 6: Subroutines

More information

BASICS OF THE RENESAS SYNERGY TM

BASICS OF THE RENESAS SYNERGY TM BASICS OF THE RENESAS SYNERGY TM PLATFORM Richard Oed 2018.11 02 CHAPTER 9 INCLUDING A REAL-TIME OPERATING SYSTEM CONTENTS 9 INCLUDING A REAL-TIME OPERATING SYSTEM 03 9.1 Threads, Semaphores and Queues

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

Starting Visual Studio 2005

Starting Visual Studio 2005 Starting Visual Studio 2005 1 Startup Language 1. Select Language 2. Start Visual Studio If this is your first time starting VS2005 after installation, you will probably see this screen. It is asking you

More information

First, let's make sure we have all of the starter code downloaded. MAC (Go to the second part of the tutorial if you are using windows)

First, let's make sure we have all of the starter code downloaded. MAC (Go to the second part of the tutorial if you are using windows) CSE 167 HW 0 - Due Thur. Jan 18th at 11:59 p.m. This homework will help you set up OpenGL on your computer. First, let's make sure we have all of the starter code downloaded. https://github.com/ht413/cse167startercode

More information

Reference Guide Importing data into SureTrend 4.x. Call a Hygiena representative for more information or support

Reference Guide Importing data into SureTrend 4.x. Call a Hygiena representative for more information or support Reference Guide Importing data into SureTrend.x Call a Hygiena representative for more information or support.805.88.8007 Importing Data SureTrend makes consolidating databases and importing data easy.

More information

Start Active-HDL. Create a new workspace TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS

Start Active-HDL. Create a new workspace TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS Introduction to Active-HDL TUTORIAL #1 CREATING AND SIMULATING SIMPLE SCHEMATICS This tutorial will introduce the tools and techniques necessary to design a basic schematic. The goal of this tutorial is

More information

Installation of the DigitalSystemsVM virtual machine

Installation of the DigitalSystemsVM virtual machine Installation of the DigitalSystemsVM virtual machine Notice This document explains how to install the DigitalSystemsVM virtual machine on a computer with Windows 7 SP1. If questions or problems relating

More information

Advanced PowerPoint. Course Description. Objectives: Using Master Slides. Using a Notes Master and a Handout Master. Add a Picture to a master

Advanced PowerPoint. Course Description. Objectives: Using Master Slides. Using a Notes Master and a Handout Master. Add a Picture to a master Course Description Advanced PowerPoint In the PowerPoint Introduction course, you learned how to create a new presentation, work with text objects, insert objects to enhance the presentation, add a background

More information

How to Create a Windows Form Applcation in Visual C++/CLR 2012: Exploiting the power of Visual C++/CLR 2012

How to Create a Windows Form Applcation in Visual C++/CLR 2012: Exploiting the power of Visual C++/CLR 2012 Windows Form Applications in Visual C++/CLR 2012 How to use Visual Studio 2015 is explained at this website. You can create a new windows form application in Visual C++/CLR 2013 essentially in the same

More information

Installation notes ICECUP, ICE-GB and DCPSE

Installation notes ICECUP, ICE-GB and DCPSE Installation notes ICECUP, ICE-GB and DCPSE Thank you for purchasing one of our corpora. You have in your hand the result of many years of research! Our software, ICECUP, will run on a Windows desktop,

More information

Microsoft Robocopy GUI Users Guide

Microsoft Robocopy GUI Users Guide Microsoft Robocopy GUI Users Guide Version 3.1.1 Copyright 2002-2006 Microsoft Corporation Page 1 Table of Contents 1 Requirements...3 2 Installation...3 3 What s new in Microsoft Robocopy GUI 3.1.1?...7

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

PlicElements Quick Start Guide

PlicElements Quick Start Guide PlicElements is a high-speed-low-drag web application used by Professional Photographers and/or Studios to upload and prepare class/school composites to participating labs for processing. Simply upload

More information

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution

User Guide. Kronodoc Kronodoc Oy. Intelligent methods for process improvement and project execution User Guide Kronodoc 3.0 Intelligent methods for process improvement and project execution 2003 Kronodoc Oy 2 Table of Contents 1 User Guide 5 2 Information Structure in Kronodoc 6 3 Entering and Exiting

More information

Final Cut Pro: Intro How to Make a DVD from a mini-dv tape

Final Cut Pro: Intro How to Make a DVD from a mini-dv tape TEST Final Cut Pro: Intro How to Make a DVD from a mini-dv tape Many projects at PEPS require use of Final Cut Pro (FCP) to take a mini-dv tapes and put the footage onto a DVD. In this tutorial, we ll

More information

Document Formatting and Page Layout

Document Formatting and Page Layout Word 2013 Document Formatting and Page Layout Introduction Instructional designers create a lot of documents such as job aids, training manuals, memos, and so forth. They do so using Word software. While

More information

Installation Guide ~ Visual Studio C Express Edition

Installation Guide ~ Visual Studio C Express Edition Installation Guide ~ Visual Studio C++ 2008 Express Edition [Note: This installation guide has been taken from http://cplus.about.com/od/learnc/ss/vc2008.htm] Online Installation [Recommended for those

More information

Lab Android Development Environment

Lab Android Development Environment Lab Android Development Environment Setting up the ADT, Creating, Running and Debugging Your First Application Objectives: Familiarize yourself with the Android Development Environment Important Note:

More information

Table of Contents. Using the 360 Video Player Using the Web Browser Version...2. Downloading and Installing the Video Player...

Table of Contents. Using the 360 Video Player Using the Web Browser Version...2. Downloading and Installing the Video Player... Table of Contents Using the 360 Video Player... 2 Using the Web Browser Version...2 Downloading and Installing the Video Player...2 First Time Use...3 Consent Form... 4 Updating your Details... 5 Viewing

More information

AUTOMATION ANYWHERE ENTERPRISE 11 LTS

AUTOMATION ANYWHERE ENTERPRISE 11 LTS AUTOMATION ANYWHERE ENTERPRISE 11 LTS MetaBot Designer - User Guide Copyright 2018 Automation Anywhere, Inc. 1 https://support.automationanywhere.com Section: MetaBots - Getting Started Copyright 2018

More information

TF5800PVR recording to DVD using ProjectX and Nero

TF5800PVR recording to DVD using ProjectX and Nero TF5800PVR recording to DVD using ProjectX and Nero Summary How to burn Topfield recordings,.rec files, to DVD using ProjectX, PVAStrumento and Nero on a Windows PC. Author Issue: Date: Malcolm Reeves (mreeves@fullcircuit.com)

More information

OPEN THE HOTLINE CLIENT

OPEN THE HOTLINE CLIENT OPEN THE HOTLINE CLIENT Everything in the Hotline universe starts with the Client Toolbar; it launches all of the Client s major functions. 1 Double-click the Hotline icon on your desktop. The Hotline

More information

Visual Studio.NET. Rex Jaeschke

Visual Studio.NET. Rex Jaeschke Visual Studio.NET Rex Jaeschke Copyright c 2002, 2005 Rex Jaeschke. All rights reserved. Edition: 2.0 (matches V2) Printing: August 6, 2005 All rights reserved. No part of this publication may be reproduced,

More information