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

Size: px
Start display at page:

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

Transcription

1 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 quite a few people out. I am assuming that you are not a complete n00b and have installed Microsoft Visual Studio. I have install the complete set of tools that Microsoft have available where as you might have just Install Microsoft Visual C++ (cpp) OR C Sharp (c#) or any tools that help with the programming language that you are aiming to use to program you applications so parts of this tutorial may not be very useful to you. There may be slight differences in the way that you re Microsoft Visual Studio looks compared to the ones in the screenshots and some of the features may be missing as I am using Microsoft Visual Studio Professional and I am also running Microsoft Windows Vista Ultimate Edition at the time of writing this tutorial. In this tutorial I will be using Microsoft Visual Studio to create a win32 application so if you are not using c++ these tutorials may become useless to you all together. Opening Microsoft Visual Studio On Microsoft Windows Vista and XP to open the visual studio do the following: Start Menu => All Programs => Microsoft Visual Studio 2008 => Microsoft Visual Studio That s all there is to it you have now successfully opened Microsoft Visual Studio and you should now see the Microsoft Visual Studio splash screen (see Figure 1.0) Figure 1.0

2 Let s Explore the Studio Ok so now let s have a look at the Microsoft Studio Layout the first page that you will see is the start page (see Figure 1.1) this will be the very first page that you will see every time you open Microsoft Visual Studio and also when you close all any open solutions that you may have open. This will be the case unless you have set one of your Projects to be your Default Project when opening Microsoft Visual Studio in that case the Default Project will open up automatically and the start screen will be totally bypassed until you close the open Solution. Figure 1.1

3 The Recent Projects (Figure 1.3) is the area of the start screen is where all the projects that you have been working on will appear in a ordered list the last project that you worked on last appears at the top of the list. To carry on working on a project simply click on the project name in the Recent Projects list and it will open the Project that you clicked for you. I find to be a very useful feature. The Recent Projects also includes options to create a new project and open any other project that isn t displayed on the list simply click the project links next to Open: and Create: Text Labels

4 Figure 1.3 The main area (Figure 1.4) of the start screen includes a list of articles from the MSDN (Microsoft Developer Network) website which is a very useful place to go when you need help and has references for all the programming languages that come with visual studio. Simply click on any of the links in this area and if you are connected to the internet you will be taken to the MSDN website article that you chose. Figure 1.4

5 The Getting Started screen (Figure 1.5) is a list of links that will help you get started using visual studio and you may find that the links in this area are very useful simply click on the titles to go to the news article or help document. Figure 1.5

6 The getting Visual Studio Headlines screen (Figure 1.6) is a list of links that will have news about the visual studio I.D.E updates and other interesting headlines that Microsoft Microsoft thinks may be of interest to the users of visual studio Figure 1.6 Creating a Project The first thing to do is to create a new project for our program. To create a project, follow these 6 easy to follow steps: 1. Under the File menu, Select New, and then select Project from the Sub Menu that appears (Figure 1.7). Alternatively, you can press Ctrl+Shift+N (Shortcut Key Combination). The New Project dialog box will be displayed (Figure 1.8). Figure 1.7

7 Figure Enter a name for your Project in the Name box the Solution name will mirror the Project name so there is no need to fill it in or change it but ill leave that step up to you. 3. Select which type of Project you will be creating in the Project Types Pane on the left, and then select a template from the Templates pane on the right. 4. Choose a location for your new project in the Location box, either by typing a directory path or by clicking Browse and navigating to the appropriate directory. 5. Click the OK button and the Win32 Application Wizard will be displayed (Figure 1.8). This Project will possess a simple, Win32 interface, and will display a message box onto the screen for our test purpose. Before proceeding, though, you need to change some setting Click next on the Win32 Wizard Setting wizard will appear (Figure 1.9). Figure 1.8

8 Figure 1.9

9 6. Know comes the point where you decide what type of support you application will need ill explain a little about each option below Under Application Type: Windows Application Check this option if the application you are programming is for windows WIN32 API Console App Check this option if your application is going to be aimed at the windows console (Looks similar to dos console) Dll Select this box if you are creating a DLL (Dynamic Link Library) File Dll,s are files that you can include in your application to make it easy to manage parts of your code if you

10 have a large project and don t want to have to recompile you re whole application to be able to update a tiny part of your code. Dll,s end in the.dll extension Static Library Select this option if option if you want to create a static library which is similar to a dll but if you use one of these the size of your application will become huge compared to application that use Dll,s because the code from the library s are put inside of your application when you compile it. Under Add Common header File For: ATL Check this option if you are planning to user the ATL (Active Template Library) library s in your applicants so that the program you create will include the header files for the Library s. MFC was introduced in 1992 with Microsoft's C/C compiler for use with 16-bit versions of Windows as an extremely thin OOP/C++ wrapper for Windows API (C). C++ was just beginning to replace C for development of commercial application software (as predominant way to interface the API). With that, they also shipped the very first replacement for (older, alphanumeric) IDE called PWB. New "App Studio" was a good set of designers available at the time, still existent today (2008). MFC Check this option if you are planning to user the MFC (Microsoft Foundation Classes) library s in your applicants so that the program you create will include the header files for the Library s. The Active Template Library (ATL) is a set of template-based C++ classes developed by Microsoft that simplify the programming of Component Object Model (COM) objects. The COM support in Visual C++ allows developers to create a variety of COM objects, OLE Automation servers, and ActiveX controls.[1] [2] Patterned after the Standard Template Library (STL), ATL includes an object wizard that sets up primary structure of the objects very quickly with a minimum of hand coding. The current most up to date version of the Microsoft Microsoft Foundation Classes is 9.0 Under additional options: Empty project Check this box if you want your project to be empty and not use the default template includes and code template that is included Export Symbols This option will only become available if the empty project is checked. You only have to use this option if you wish the compiler to export symbols from dlls when linking to them

11 in your application at the compiler Precompiled Header This option if you with to use a Precompiled Header to help out the compiler. In many programs, the majority of header files that are included are provided by the operating system. As a result, the compiler spends a significant proportion of its time parsing the same files for every program that is compiled on a given platform. In modern operating systems, there can be literally thousands of header files, and in some cases many or all of these are included by a single master include file such as windows.h on Windows or Cocoa/Cocoa.h on Mac OS X. In order to reduce compilation times, modern compilers often allow these header files, which rarely change, to be pre-compiled into a form that is easier for the compiler to load. This intermediate form is known as a pre-compiled header, and is commonly held on disk with the extensions.pch or.gch. 7. That s it simply click the Finish button to create the project. The wizard correctly initializes all the compiler settings for the project. If you got this far well done you now know how to open Visual Studio What the start Screen does and how to create a new project. Using the Solution Explorer Adding a Files to your Project 1. Right Click the folder you want to add a file to in the solution explorer and select Add then New item (Figure 2.0) or click the add new item button on the toolbar (see Figure 1.10) in my example I want to add a header (.h) file to my project but you may add anything you want to your project after clicking new item. 2. Select the type of file you want to add from the box that opens (Figure 2.1) there all labeled and it should not be that hard to figure out what each file is used for if you have a little programming experience of enter there names into Google or Wikipedia and do a little research after selecting the type of file you want to add enter a file name in the Name box. 3. Choose a location for your new project in the Location box, either by typing a directory path or by clicking Browse and navigating to the appropriate directory. The default location should be ok though. To finish click Ok. Figure 1.10

12 Figure 2.0 Figure 2.1

13 Editing Code: 1. To edit a file in Visual Studio simply Double-Click the file you want to edit in the solution explorer or Right-Click the file in Solution Explorer and click Open either way you will do exactly the same thing open the file for editing (Figure 2.2). Figure 2.2

14 2. Now edit and add the code for your program in code window (Figure 2.3) Figure 2.3 Compiling and Executing the Program Building the Executable The next thing to do is build the source into a executable file. The term build in Visual Studio I.D.E refers to compiling and linking the program. Visual Studio.NET compiles

15 any source files that have changed since the last build and any new resources into object files (.obj), if no compile errors were generated in the compiler, then the build process will carry on to the linker to perform a link of the generated object (.obj) files into a executable file. To build the executable, select Build Solution from the Build (Figure2.5) menu or press Ctrl+Shift+B or F7. Figure 2.5 An Output window displaying the build progress will appear near the bottom of the Visual Studio.NET window. If no errors are encountered, the message Build: 1 succeeded, 0 failed, 0 skipped should appear in the Output window (Figure 2.4). If any problems occur, the Output window will contain a list of errors and warnings, as shown in figure 2.4. Figure 2.4

16 Executing your program Once you ve eliminated all errors and you ve successfully built the project, you can finally execute the program. Choose Start without Debugging from the Debug menu to run the program. You can also press CTRL+F5 to execute the program or the easiest way is to use the Start Debugging button on the toolbar (Figure 2.6). Figure 2.6 Linking Library Files There are two ways I know of to link library files to your project the first way can be used in your source (.cpp file) at the top or in a header file (.h file) type the following bit of code: #pragma comment(lib, "libname") Where libanme is the name of the library The second way in which you can link lib files is to go to the project menu then Properties (see Figure 1.7) in the properties select Configuration properties => Linker => Input Then add the names of your lib files in the Additional Dependencies box like: Libname1; libname2; Libane3 (See Figure 2.8) Figure 2.7

17 Figure 2.8 Checking for I.D.E updates Click Help => Check for Updates (See Figure 2.9) Removing Files

18 Right click on the file you want to remove in the solution explorer and click the delete option or press delete key. (see Figure 2.10) Renaming Files Right click on the file you want to rename in the solution explorer and click the rename option or press F2. and retype the name of the file (see Figure 2.10) Figure 2.10 Including In your code you can create header files into cpp files the header files that you create can be included in your cpp files like this: #include "stdafx.h" And common windows header files like this #include <windows.h> Important note: stdafx.h is required by Visual C++ Win32 API apps if you don t have #include "stdafx.h" as your first header then it will not compile Figure 2.9

19 Tutorial Credits Author Wap2k

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

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

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

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

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

Creating a MOM 2005 Peformance Graph Report From a Template

Creating a MOM 2005 Peformance Graph Report From a Template Creating a MOM 2005 Peformance Graph Report From a Template Last Reviewed: Product Version: Reviewed By: Latest Content: October 17, 2005 MOM 2005 Justin Harter http://spaces.msn.com/members/jharter 1

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

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

Getting started 7. Setting properties 23

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

More information

Get an Easy Performance Boost Even with Unthreaded Apps. with Intel Parallel Studio XE for Windows*

Get an Easy Performance Boost Even with Unthreaded Apps. with Intel Parallel Studio XE for Windows* Get an Easy Performance Boost Even with Unthreaded Apps for Windows* Can recompiling just one file make a difference? Yes, in many cases it can! Often, you can achieve a major performance boost by recompiling

More information

Creating Mixed Language Projects with Microsoft Developer Studio 2005, Intel Fortran, MS C++ and Canaima Legacy Software

Creating Mixed Language Projects with Microsoft Developer Studio 2005, Intel Fortran, MS C++ and Canaima Legacy Software Creating Mixed Language Projects with Microsoft Developer Studio 2005, Intel Fortran, MS C++ and Canaima Legacy Software Don Robinson ESSA Technologies November, 2007 These are the steps to follow to create

More information

APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713

APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713 APPENDIX A. CODE COMPOSER STUDIO (CCS) v5: A BRIEF TUTORIAL FOR THE DSK6713 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments integrated development environment (IDE) for developing routines

More information

User Guide. Introduction. Requirements. Installing and Configuring. C Interface for NI myrio

User Guide. Introduction. Requirements. Installing and Configuring. C Interface for NI myrio User Guide C Interface for NI myrio Introduction The C interface for NI myrio is designed for users who want to program the NI myrio using the C programming language or a programming language other than

More information

Tutorial - Exporting Models to Simulink

Tutorial - Exporting Models to Simulink Tutorial - Exporting Models to Simulink Introduction The Matlab and Simulink tools are widely used for modeling and simulation, especially the fields of control and system engineering. This tutorial will

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

Project: E337 GRAPHIC INTERFACE DESIGN FOR SIMULATION SOFTWARE

Project: E337 GRAPHIC INTERFACE DESIGN FOR SIMULATION SOFTWARE Undergraduate Research Opportunity Programme (UROP) Project: E337 GRAPHIC INTERFACE DESIGN FOR SIMULATION SOFTWARE Supervisor Asst.Professor Ma MaoDe Nanyang Technological University Email: emdma@ntu.edu.sg

More information

Fundamental C# Programming

Fundamental C# Programming Part 1 Fundamental C# Programming In this section you will find: Chapter 1: Introduction to C# Chapter 2: Basic C# Programming Chapter 3: Expressions and Operators Chapter 4: Decisions, Loops, and Preprocessor

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

Binghamton University. EngiNet. State University of New York

Binghamton University. EngiNet. State University of New York Binghamton University EngiNet State University of New York 1 Thomas J. Watson School of Engineering and Applied Science EngiNet WARNING All rights reserved. No Part of this video lecture series may be

More information

PISCES Installation and Getting Started 1

PISCES Installation and Getting Started 1 This document will walk you through the PISCES setup process and get you started accessing the suite of available tools. It will begin with what options to choose during the actual installation and the

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

As CCS starts up, a splash screen similar to one shown below will appear.

As CCS starts up, a splash screen similar to one shown below will appear. APPENDIX A. CODE COMPOSER STUDIO (CCS) v5.1: A BRIEF TUTORIAL FOR THE OMAP-L138 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments integrated development environment (IDE) for developing

More information

MS Visual Studio.Net 2008 Tutorial

MS Visual Studio.Net 2008 Tutorial 1. Start Visual Studio as follows: MS Visual Studio.Net 2008 Tutorial 2. Once you have started Visual Studio you should see a screen similar to the following image: 3. Click the menu item File New Project...

More information

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline 2 T U T O R I A L Objectives In this tutorial, you will learn to: Navigate Visual Studio.NET s Start Page. Create a Visual Basic.NET solution. Use the IDE s menus and toolbars. Manipulate windows in the

More information

Compiling MapleSim C-Code in Visual C Express

Compiling MapleSim C-Code in Visual C Express Compiling MapleSim C-Code in Visual C++ 2010 Express Introduction This tutorial will guide you through the steps involved in generating C code from a MapleSim 5 model, and then compiling the code in Visual

More information

Building AMD64 Applications with the Microsoft Platform SDK. Developer Application Note

Building AMD64 Applications with the Microsoft Platform SDK. Developer Application Note Building AMD64 Applications with the Microsoft Platform SDK Developer Application Note Publication # 30887 Revision: 3.00 Issue Date: October 2003 2003 Advanced Micro Devices, Inc. All rights reserved.

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

A Guide to Installing OLI Software

A Guide to Installing OLI Software A Guide to Installing OLI Software OLI Systems delivers a comprehensive suite of tools designed to help you analyze complex aqueous and multi-solvent electrolyte solution chemistry, thermo-physical properties,

More information

Hello World on the ATLYS Board. Building the Hardware

Hello World on the ATLYS Board. Building the Hardware 1. Start Xilinx Platform Studio Hello World on the ATLYS Board Building the Hardware 2. Click on Create New Blank Project Using Base System Builder For the project file field, browse to the directory where

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

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

Tutorial for VC++ UDF Studio 18.2 SP1 Chinese Version

Tutorial for VC++ UDF Studio 18.2 SP1 Chinese Version Tutorial for VC++ UDF Studio 18.2 SP1 Chinese Version Supported Features: Windows version Trial Version Registered Version WinXP~Win10 (x86/x64) Fluent Trial Version Registered Version 6.3 (x86/x64) 12.0

More information

CIS 231 Windows 10 Install Lab # 3

CIS 231 Windows 10 Install Lab # 3 CIS 231 Windows 10 Install Lab # 3 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in

More information

Using OpenGL & GLUT in Visual Studio.NET 2003

Using OpenGL & GLUT in Visual Studio.NET 2003 Using OpenGL & GLUT in Visual Studio.NET 2003 A Guide to Easier Graphics Programming By Jordan Bradford This guide will show you how to set up a Visual Studio OpenGL/GLUT project that will compile in both

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

CREATING CUSTOMER MAILING LABELS

CREATING CUSTOMER MAILING LABELS CREATING CUSTOMER MAILING LABELS agrē has a built-in exports to make it easy to create a data file of customer address information, but how do you turn a list of names and addresses into mailing labels?

More information

Targeting the NetWare Operating System PDK 5.0

Targeting the NetWare Operating System PDK 5.0 Targeting the NetWare Operating System PDK 5.0 Revised: 12/13/02 Metrowerks, the Metrowerks logo, and CodeWarrior are registered trademarks of Metrowerks Corp. in the US and/or other countries. All other

More information

Uninstall A Apps Windows 8 Programming Using Microsoft Visual C++

Uninstall A Apps Windows 8 Programming Using Microsoft Visual C++ Uninstall A Apps Windows 8 Programming Using Microsoft Visual C++ Download Windows 8 code samples and applications. NET, JavaScript, and C++ so check back often. Programming language code examples created

More information

As CCS starts up, a splash screen similar to one shown below will appear.

As CCS starts up, a splash screen similar to one shown below will appear. APPENDIX A. CODE COMPOSER STUDIO (CCS) v6.1: A BRIEF TUTORIAL FOR THE DSK6713 A.1 Introduction Code Composer Studio (CCS) is Texas Instruments Eclipse-based integrated development environment (IDE) for

More information

Outlook tips for road warriors

Outlook tips for road warriors Outlook 2000/2002: Tips for road warriors You use Outlook to send and receive e-mail and access your calendar and contacts when you re at the office, but what about when you re on the road? Don t worry

More information

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5 VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron VI-Center to configure and manage virtual

More information

Appendix M: Introduction to Microsoft Visual C Express Edition

Appendix M: Introduction to Microsoft Visual C Express Edition Appendix M: Introduction to Microsoft Visual C++ 2005 Express Edition This book may be ordered from Addison-Wesley in a value pack that includes Microsoft Visual C++ 2005 Express Edition. Visual C++ 2005

More information

C++ - OpenGL - Setting up Visual Studio

C++ - OpenGL - Setting up Visual Studio FAKULTI TEKNOLOGI MAKLUMAT DAN KOMUNIKASI BITM 3213 - INTERACTIVE COMPUTER GRAPHICS LAB SESSION 1 C++ - OpenGL - Setting up Visual Studio (FROM WEBSITE: http://www.badprog.com/c-opengl-setting-up-visual-studio)

More information

Check the Desktop development with C++ in the install options. You may want to take 15 minutes to try the Hello World C++ tutorial:

Check the Desktop development with C++ in the install options. You may want to take 15 minutes to try the Hello World C++ tutorial: CS262 Computer Vision OpenCV 3 Configuration with Visual Studio 2017 Prof. John Magee Clark University Install Visual Studio 2017 Community Check the Desktop development with C++ in the install options.

More information

15 - Libraries Activating libraries

15 - Libraries Activating libraries 15 - Libraries Modern computer users are storing more and more information on their machines. Digital cameras have made it super easy to take thousands of pictures. The internet has made it cheap and easy

More information

Sun VirtualBox Installation Tutorial

Sun VirtualBox Installation Tutorial Sun VirtualBox Installation Tutorial Installing Linux Mint 5 LTS Guest OS By Dennis Berry Welcome to the world of virtualization and Linux. This tutorial is intended to help users who are new to the world

More information

To get started with Visual Basic 2005, I recommend that you jump right in

To get started with Visual Basic 2005, I recommend that you jump right in In This Chapter Chapter 1 Wading into Visual Basic Seeing where VB fits in with.net Writing your first Visual Basic 2005 program Exploiting the newfound power of VB To get started with Visual Basic 2005,

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

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

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

ALTIRIS Console 6.5 Overview

ALTIRIS Console 6.5 Overview ALTIRIS Console 6.5 Overview Document Version: 1.0 The information contained in the Altiris Knowledgebase is subject to the Terms of Use as outlined at http://www.altiris.com/legal/termsofuse.asp. History

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

dbdos PRO 2 Quick Start Guide dbase, LLC 2013 All rights reserved.

dbdos PRO 2 Quick Start Guide dbase, LLC 2013 All rights reserved. dbdos PRO 2 Quick Start Guide 1 dbase, LLC 2013 All rights reserved. dbase, LLC may have patents and/or pending patent applications covering subject matter in this document. The furnishing of this document

More information

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

Visual C++ MFC Programming By Example By John E. Swanke

Visual C++ MFC Programming By Example By John E. Swanke Visual C++ MFC Programming By Example By John E. Swanke MFC Tutorial for Beginners - Learn MFC in simple and easy steps starting from The tutorial provides a hands-on approach with step-by-step program

More information

For additional information, please consult the Read-Me and Help documentation or contact Electro-Voice or Dynacord technical support.

For additional information, please consult the Read-Me and Help documentation or contact Electro-Voice or Dynacord technical support. Quick Start Guide Hello, and welcome to IRIS-Net software. We want you to get the most from your IRIS-Net projects and encourage you to explore the additional Read-Me and Help documentation provided with

More information

Files and Folders Management

Files and Folders Management Files and Folders Management A. OVERVIEW FOLDER SET UP This tutorial is written for Windows 7. Vista and XP are similar but not exactly the same. The interface that a Vista or XP user may see on the screen

More information

Managing Files & Folders

Managing Files & Folders Managing Files & Folders 1 Navigation Pane 2 Back, Forward, and Up Buttons 3 Ribbon 4 Address Bar or Navigation Bar 5 File List 6 Column Headings 7 Search Box 8 Status Bar 9 Preview Pane Identify parts

More information

How to Talk To Windows. What did it say?

How to Talk To Windows. What did it say? How to Talk To Windows What did it say? 1 DOS was essentially subservient. Your program was the master. When you wanted some service from DOS you called DOS it obeyed. You could even bypass DOS and communicate

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

CANape ASAM-MCD3 Interface Version Application Note AN-AMC-1-103

CANape ASAM-MCD3 Interface Version Application Note AN-AMC-1-103 Version 3.2 2018-06-19 Application Note AN-AMC-1-103 Author Restrictions Abstract Vector Informatik GmbH Public Document This is document is a general introduction explaining the CANape ASAM-MCD3 Interface

More information

SonicCell. Using SonicCell with SONAR LE. Workshop ÂØÒňÎ. Expandable Synthesizer Module and Audio Interface SCWS03 1

SonicCell. Using SonicCell with SONAR LE. Workshop ÂØÒňÎ. Expandable Synthesizer Module and Audio Interface SCWS03 1 ÂØÒňΠWorkshop SonicCell Expandable Synthesizer Module and Audio Interface Using SonicCell with SONAR LE 2008 Roland Corporation U.S. All rights reserved. No part of this publication may be reproduced

More information

Introduction to Microsoft Access 2016

Introduction to Microsoft Access 2016 Introduction to Microsoft Access 2016 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING

OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING 1 OUTLOOK TIPS AND TRICKS GINI COURTER, M.B.A., TRIAD CONSULTING DISPLAYING THE ADVANCED TOOLBAR (2007) The Advanced toolbar isn t advanced; it s just the commands that they couldn t fit on the Standard

More information

Linking Reports to your Database in Crystal Reports 2008

Linking Reports to your Database in Crystal Reports 2008 Linking Reports to your Database in Crystal Reports 2008 After downloading and saving a report on your PC, either (1) browse-to the report using Windows Explorer and double-click on the report file or

More information

IMPLEMENTING SCL PROGRAMS. Using Codeblocks

IMPLEMENTING SCL PROGRAMS. Using Codeblocks IMPLEMENTING SCL PROGRAMS Using Codeblocks With the GSL on Linux Dr. José M. Garrido Department of Computer Science Updated September 2014 College of Science and Mathematics Kennesaw State University c

More information

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

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

More information

Installing the application involves several steps. Note that you must install QuickBooks on your computer prior to installing this application.

Installing the application involves several steps. Note that you must install QuickBooks on your computer prior to installing this application. CCRQLABEL OVERVIEW This is an overview (summary) of the CCRQLabel 4.x label printing product. Full documentation is under development INSTALLING CCRQLABEL This document provides a quick review of how to

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

How do I apply the patch files?

How do I apply the patch files? How do I apply the patch files? 1. Once the patch file has been saved to your hard disk, use Windows Explorer (Start > Programs > [Accessories > ] Windows Explorer) to browse to the directory where the

More information

Windows XP - MVX Printer Driver Installation

Windows XP - MVX Printer Driver Installation Windows XP - MVX Printer Driver Installation READ FIRST! This document assumes you have already downloaded the driver installer ZIP package from either the Universal Laser Systems website or Universal

More information

I N S T A L L A T I O N

I N S T A L L A T I O N USING REFWORKS FOR MACS I N S T A L L A T I O N You can access RefWorks through the University of Notre Dame Library website. Click on RefWorks underneath the Researching Help menu on the first page. Access

More information

Getting started with System Center Essentials 2007

Getting started with System Center Essentials 2007 At a glance: Installing and upgrading Configuring Essentials 2007 Troubleshooting steps Getting started with System Center Essentials 2007 David Mills System Center Essentials 2007 is a new IT management

More information

INTRODUCTION ACCESS 2010

INTRODUCTION ACCESS 2010 INTRODUCTION ACCESS 2010 Overview of Ms. Access 2010 Microsoft Access is a computer application used to create and manage databases. Access Databases can store any type of information: numbers, text, and

More information

Window Server 2012 Hyper-V Virtual Machine Snapshots

Window Server 2012 Hyper-V Virtual Machine Snapshots Window Server 2012 Hyper-V Virtual Machine Snapshots Creating a Snapshot Hyper-V makes it easy to create snapshots. To do so, open the Hyper-V Manager, right click on the virtual machine that you want

More information

Fairfield University Using Xythos for File Storage

Fairfield University Using Xythos for File Storage Fairfield University Using Xythos for File Storage Version 7.0 Table of Contents I: Accessing your Account...2 II: Uploading Files via the Web...2 III: Manage your Folders and Files via the Web...4 IV:

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

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2 VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

Developing Applications using Universal Driver 6.0x in Windows CE 6.0

Developing Applications using Universal Driver 6.0x in Windows CE 6.0 Developing Applications using Universal Driver 6.0x in Windows CE 6.0 Rev. B 1 1 Installing Universal Driver 6.0x in the platform The installation of UNIVERSAL DRIVER is a very simple process and requires

More information

Introduction to C/C++ Programming

Introduction to C/C++ Programming Chapter 1 Introduction to C/C++ Programming This book is about learning numerical programming skill and the software development process. Therefore, it requires a lot of hands-on programming exercises.

More information

Portable applications are programs that are fully functional without having to install them on your PC.

Portable applications are programs that are fully functional without having to install them on your PC. A Guide Portable applications are programs that are fully functional without having to install them on your PC. Portable applications are programs that are fully functional without having to install them

More information

Setting up a Project and Debugging with Visual Studio

Setting up a Project and Debugging with Visual Studio Setting up a Project and Debugging with Visual Studio Contents Setup Visual Studio to compile a DLL ---------------------------------------------------------------- 1 Step 1: Install Visual Studio Express

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

This manual will explain how to do a mail merge in Cordell Connect, using the following Windows programs:

This manual will explain how to do a mail merge in Cordell Connect, using the following Windows programs: Section 10 Mail Merge Cordell Connect has very a useful mail merge function for letters and mailing labels. Mail merges can be performed using project, company or contact information. The data source for

More information

Microsoft Visual Studio User Guide Wotuy

Microsoft Visual Studio User Guide Wotuy MICROSOFT VISUAL STUDIO USER GUIDE WOTUY PDF - Are you looking for microsoft visual studio user guide wotuy Books? Now, you will be happy that at this time microsoft visual studio user guide wotuy PDF

More information

Reading: Managing Files in Windows 7

Reading: Managing Files in Windows 7 Student Resource 13.4b Reading: Managing Files in Windows 7 Directions: All recent versions of Windows (XP, Vista, Windows 7) have fairly similar ways of managing files, but their graphic user interfaces

More information

CRM CUSTOMER RELATIONSHIP MANAGEMENT

CRM CUSTOMER RELATIONSHIP MANAGEMENT CRM CUSTOMER RELATIONSHIP MANAGEMENT Customer Relationship Management is identifying, developing and retaining profitable customers to build lasting relationships and long-term financial success. The agrē

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

Windows Programming Using MFC and Visual C ++.Net

Windows Programming Using MFC and Visual C ++.Net Windows Programming Using MFC and Visual C ++.Net Introduction Masoud Milani School of Computer Science Florida International University Miami, FL 33199 milani@fiu.edu INTRODUCTION This course covers the

More information

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

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

More information

Overview of the Microsoft.NET Framework

Overview of the Microsoft.NET Framework Overview of the Microsoft.NET Framework So far in this course, we have concentrated on one part of.net, the Foundation Class Libraries. However, there s more to.net than the FCL. This lecture will tell

More information

Code Blocks Cannot Find Compiler Executable Windows 7

Code Blocks Cannot Find Compiler Executable Windows 7 Code Blocks Cannot Find Compiler Executable Windows 7 Windows. Once you've installed a new compiler, be sure to read the I couldn't find a way to force CB to use a unix-link shell, but was able to find

More information

Color Controller E-41A. Customer User Addendum

Color Controller E-41A. Customer User Addendum Color Controller E-41A Customer User Addendum 2014 Electronics For Imaging. The information in this publication is covered under Legal Notices for this product. 45125308 26 February 2014 CONTENTS 3 CONTENTS

More information

Problems with PSQL and Windows 10 Release 1803

Problems with PSQL and Windows 10 Release 1803 Problems with PSQL and Windows 10 Release 1803 A White Paper From For more information, see our web site at Problems with PSQL and Windows 10 Release 1803 Last Updated: June 26, 2018 (See Last Page) In

More information

Word: Print Address Labels Using Mail Merge

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

More information

INFORMATICS LABORATORY WORK #2

INFORMATICS LABORATORY WORK #2 KHARKIV NATIONAL UNIVERSITY OF RADIO ELECTRONICS INFORMATICS LABORATORY WORK #2 SIMPLE C# PROGRAMS Associate Professor A.S. Eremenko, Associate Professor A.V. Persikov 2 Simple C# programs Objective: writing

More information

EMS DESKTOP CLIENT Installation Guide

EMS DESKTOP CLIENT Installation Guide EMS DESKTOP CLIENT Installation Guide Version 44.1 Last Updated: March 5, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: Introduction

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

FmPro Migrator Developer Edition - Table Consolidation Procedure

FmPro Migrator Developer Edition - Table Consolidation Procedure FmPro Migrator Developer Edition - Table Consolidation Procedure FmPro Migrator Developer Edition - Table Consolidation Procedure 1 Installation 1.1 Installation Tips 5 2 Step 1 2.1 Step 1 - Import Table

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information