Introduction to The Femap API

Size: px
Start display at page:

Download "Introduction to The Femap API"

Transcription

1 Introduction to The Femap API ATA Engineering, Inc Evening Creek Drive South Suite 250 San Diego, CA T F Prepared by: Kurt Knutson Manager of Software Services Date: June 23, 2015

2 FEMAP API Can Benefit Users with Simple to Advanced Needs Benefits of the API Include: Automate repetitive tasks Augment or customize existing modeling and postprocessing functionality Program complexity can range from simple utilities up to entire toolboxes to provide new capabilities Ability to interface with external software Office tools Presentation Outline: Introduction to the API what is it? How to get started ATA examples 2

3 ATA Uses Femap s API to Create New Tools for General & Industry-Specific Workflows Femap s Application Program Interface (API) allows users to customize and create Femap tools for their specific needs The API is an OLE/COM-based programming interface to FEMAP with hundreds of functions Codes calling these functions are written in programming languages such as Visual Basic, C++, or even Python Can automate manual and tedious processes in Femap Can interact with other software such as Excel or Matlab View FEMAP as a development platform where the out of the box functionality fits 95% of the users 95% of the way But different companies have different FEA needs & methods of doing analysis or specialized interests and requirements The API provides users with the flexibility to automate both routine and complex tasks and tailor the software to their specific needs 3

4 Introduction To The Femap API 4

5 Terminology, Definitions, & Common Questions What is an API? Application Programming Interface In Femap, we often call programs we create using the Femap API, API programs, API macros or just APIs for short. The Femap API Programming is the most common way we automate tasks in Femap. What is OLE/COM? OLE, Object Linking and Embedding: Microsoft's framework for a compound document technology. COM, Component Object Model: Microsoft's framework for developing and supporting program component objects. These frameworks allow programs to talk with each other and use each other s functions and capabilities. For example, we can use an Excel Visual Basic Macro to load data from Femap using the Femap API. 5

6 Terminology, Definitions, & Common Questions Where can I use the API? Use the API within Femap or through visual studio API can be accessed through the API Programming Pane within Femap great for writing programs quickly You can also write programs in Visual Studio lots of debugging tools and easy GUI construction You can do this with Visual Studio Express 6

7 Terminology, Definitions, & Common Questions What kind of programming is the API? API Programs are most often written in Visual Basic, not a proprietary command language The FEMAP API is object oriented, meaning interactions with the API are performed by querying and manipulating a series of objects Objects have properties and methods Properties describe things about the object, Car.color = red Element.topology = CQUAD4 Methods provide a way of interacting with an object Car.drive( 50, grocery store ) Surface.mesh() 7

8 Terminology, Definitions, & Common Questions How can the API and FEMAP interact? FEMAP API 1 Use API as an add-in API FEMAP 2 Run as two separate applications API FEMAP 3 Run FEMAP as an invisible server 4 Embed FEMAP components in API 8

9 Terminology, Definitions, & Common Questions Visual Basic for Applications (VBA) allows us to directly access Femap from Excel, Word or other Microsoft Office tools since they they can work with OLE and COM. Use EXCEL to Control FEMAP Renumber Entities: Nodes, Elements, Properties, Materials, etc. by layer, color, group, etc. Extract Model Information: Mass, Volume, CG, Layer/Group/Color Name, etc., to spreadsheets Output Model Information All Information Displayed in a Formatted Table Can Be Easily Transferred to a Stress Report 9

10 How To Get Started 10

11 Femap Help Has Full Documentation of Objects and Functions The FEMAP Help can be accessed in the top border menu bar, HELP --> Help Topics Can also access pdf version in the Femap installation directory: {install}\pdf\api.pdf 11

12 The Femap API Has Some Basic Objects and Syntax to Learn More Resources for Details Go to the Femap User Community Search posts for: Introduction to the Femap API For an entire presentation with syntax basics and details Three main types of objects: Application Object - Provides access to Femap GUI as well as all entity and tool objects Entity Objects Anything created and stored in the Femap database, elements, nodes, analysis sets, etc. Tool Objects A special class that provide functionality and are not stored in the database, Data Table, File Reader, Sets, Beam Calculator, etc. 12

13 Femap Has a Wide Variety of Example API programs in Custom Tools These tools are frequently API programs with examples and source located at: {femap install}\api\ Study, try or debug and examples from here Place your own tools in this folder and they will Show up in your Femap session Add your own custom tools or tools directory here Add tools copies your tool to the Femap installation directory, Tools Directory lets you specify your own folder 13

14 Femap Has a Built In API Programming Pane Which Can Be Used to Edit or Debug Programs Beginning of the Program Create and Set a Femap Application Object End of the Program 14

15 Make, Toolbars, Shortcuts or Icons to Execute API Commands You Like Create a new toolbar Add a user command And then go to add Keyboard Shortcut if you like Right click on the tool bar to customize change buttons Drop and Drag Commands to toolbar 15

16 ATA Examples These are available at: 16

17 Example API #1: Save and Load Element, Material, Property Colors Across Similar Models save_elem_color.bas.col (color file) load_elem_color.bas 18

18 Example API #2: Freebody Loads for Many Groups and Load Cases 20

19 Example API #3: Automate PPT Documentation Femap API FEM with Many CSYS User Inputs PPT with Pictures of Accelerometer Locations PPT of Accelerometer Data (optional) 22

20 Example API #4: Reflect Element Properties, Materials, and Coordinate Systems FEM with Multiple Properties and Specific Material Orientations Femap API User Inputs Filter on Element Types? Filter on Material Types? Reflect CS? Choose Reflection Plane Reflected Model 24

21 Example API #5: Write Groups to Nastran Files FEM with Many Groups Femap API - User Inputs.bdf Include Files for Each Group Example output for group export in FEMAP message window 26

22 Final Thoughts About the Femap API The easiest way to get started is to pick a simple task Formulate the path with manual operations Identify corresponding Femap API functions and methods Everything you need is in the documentation or examples Femap API code can be written within Femap or with external interfaces learning visual basic syntax is helpful to get started. Don t forget about debugging and test models Enjoy! 27

23 Appendix Using Python With Femap 1. Get the "win32com" module for your version of Python from Source Forge: With Python 2.6.6, we used build 216, so the download was pywin win32-py2.6.exe. Install it in your Python's ~\Lib\site-packages folder. 2. Use the win32com "makepy" script to translate the Femap TLB into a Python file 1. [Python_path]\Lib\site-packages\win32com\client\makepy.py -v -o PyFemap.py [Femap_path]\femap.tlb 3. Import "PyFemap.py" in every Python module that will call the API. You MUST use "early binding" to get Python to handle the Femap API -- API calls have many "output arguments" and Python cannot inherently handle those. 4. API "output arguments" become return values in Python. So, e.g., where "zoset" is an feoutputset object 1. VB code: iret = zoset.gettitlelist (0, 0, nsets, liids, lsnams) 2. Python code: iret, nsets, liids, lsnams = zoset.gettitlelist (0, 0) 28

Using the Femap API to Improve the Analysis Process Kurt Knutson / Manager of Software Services

Using the Femap API to Improve the Analysis Process Kurt Knutson / Manager of Software Services Femap Symposium 2015 [San Diego] Co-Hosted with [ATA Engineering] Using the Femap API to Improve the Analysis Process Kurt Knutson / Manager of Software Services Femap Symposium Series 2015 February 24,

More information

Using the Femap API to Streamline Geometry Preparation and Meshing for the Shipbuilding Industry

Using the Femap API to Streamline Geometry Preparation and Meshing for the Shipbuilding Industry Victoria Harris, Project Engineer, ATA Engineering, Inc Using the Femap API to Streamline Geometry Preparation and Meshing for the Shipbuilding Industry Femap Symposium 2014 May 14-16, Atlanta, GA, USA

More information

Existing API Scripts. Andy Haines Senior Applications Engineer. Unrestricted Siemens AG 2013 All rights reserved.

Existing API Scripts. Andy Haines Senior Applications Engineer. Unrestricted Siemens AG 2013 All rights reserved. Existing API Scripts Andy Haines Senior Applications Engineer Agenda Existing API Scripts Who am I? What you will learn Femap capabilities Demonstrations Benefits of this topic How to learn more Page 2

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

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet 1. Macros 1.1 What is a macro? A macro is a set of one or more actions

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

WHITEPAPER Selecting NX Nastran Licenses in NX / Simcenter 3D

WHITEPAPER Selecting NX Nastran Licenses in NX / Simcenter 3D NX Nastran 11 NX 11 / Simcenter 3D 11 WHITEPAPER Selecting NX Nastran Licenses in NX / Simcenter 3D www.ata-plmsoftware.com 844-756-7638 (844-PLM-SOFT) Introduction Software: NX Nastran 11 NX 11 / Simcenter

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

LUSAS Programmable Interface (LPI) Customisation and Automation Guide. LUSAS Version 15.2 : Issue 1

LUSAS Programmable Interface (LPI) Customisation and Automation Guide. LUSAS Version 15.2 : Issue 1 LUSAS Programmable Interface (LPI) Customisation and Automation Guide LUSAS Version 15.2 : Issue 1 LUSAS Forge House, 66 High Street, Kingston upon Thames, Surrey, KT1 1HN, United Kingdom Tel: +44 (0)20

More information

Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench

Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench Course Curriculum (Duration: 120 Hrs.) Section I: ANSYS Mechanical APDL Chapter 1: Before you start using ANSYS a. Introduction to

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

Concordance Basics. Part I

Concordance Basics. Part I Concordance Basics Part I 1 Getting Started 1 Familiarity with the Concordance environment is the first step in learning the multi-faceted features of this powerful program. This chapter focuses on learning

More information

MICROSOFT OneNote 2013

MICROSOFT OneNote 2013 Q U I C K R E F E R E N C E G U I D E MICROSOFT OneNote 2013 Microsoft OneNote 2013 is the perfect place to gather and organize your ideas, thoughts, lists, plans, timelines, and references into one file.

More information

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password Microsoft Windows Operating System Starting Windows Windows automatically starts when you turn on your computer You might be asked to enter your username and password The Windows desktop uses a graphical

More information

Software. IMAT v7.1 Bringing the Power of MATLAB to Your Engineering Analysis and Test Data. Overview. IMAT Extended Capabilities.

Software. IMAT v7.1 Bringing the Power of MATLAB to Your Engineering Analysis and Test Data. Overview. IMAT Extended Capabilities. Software IMAT v7.1 Bringing the Power of MATLAB to Your Engineering Analysis and Test Data Overview IMAT is a MATLAB interface offered by ATA Engineering, Inc. (ATA). Designed for test and analysis engineers,

More information

Femap v and NX Nastran v9.1

Femap v and NX Nastran v9.1 Femap v11.1.2 and NX Nastran v9.1 Technical Seminar for Femap and NX Nastran Users Hosted by: Adrian Jensen, BSME, P.E., Sr Staff Mechanical Engineer George Laird, PhD, PE, Principal Mechanical Engineer

More information

Part I: Programming Access Applications. Chapter 1: Overview of Programming for Access. Chapter 2: Extending Applications Using the Windows API

Part I: Programming Access Applications. Chapter 1: Overview of Programming for Access. Chapter 2: Extending Applications Using the Windows API 74029c01.qxd:WroxPro 9/27/07 1:43 PM Page 1 Part I: Programming Access Applications Chapter 1: Overview of Programming for Access Chapter 2: Extending Applications Using the Windows API Chapter 3: Programming

More information

INTRODUCTION TO VISUAL BASIC 2010

INTRODUCTION TO VISUAL BASIC 2010 INTRODUCTION TO VISUAL BASIC 2010 Microsoft Visual Basic is a set of programming tools that allows you to create applications for the Windows operating system. With Visual Basic, even a beginner can create

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

Improve your SAS applications by using functionality built in the MS Windows API, such as accessing external DLLs, OCXs and OLE servers.

Improve your SAS applications by using functionality built in the MS Windows API, such as accessing external DLLs, OCXs and OLE servers. Improve your SAS applications by using functionality built in the MS Windows API, such as accessing external DLLs, OCXs and OLE servers. Introduction Johan Jerresand, Niklas Data AB The purpose of this

More information

Introduction to Programming

Introduction to Programming Introduction to Programming Course ISI-1329 - Three Days - Instructor-Led Introduction This three-day, instructor-led course introduces students to computer programming. Students will learn the fundamental

More information

MS Excel VBA Class Goals

MS Excel VBA Class Goals MS Excel VBA 2013 Class Overview: Microsoft excel VBA training course is for those responsible for very large and variable amounts of data, or teams, who want to learn how to program features and functions

More information

ECON 502 INTRODUCTION TO MATLAB Nov 9, 2007 TA: Murat Koyuncu

ECON 502 INTRODUCTION TO MATLAB Nov 9, 2007 TA: Murat Koyuncu ECON 502 INTRODUCTION TO MATLAB Nov 9, 2007 TA: Murat Koyuncu 0. What is MATLAB? 1 MATLAB stands for matrix laboratory and is one of the most popular software for numerical computation. MATLAB s basic

More information

Copyright Infor. All Rights Reserved.

Copyright Infor. All Rights Reserved. 1 Infor Smart Office: Getting Started Matthew Allbee, Technology Product Director, Infor 2 Agenda A Quick Anatomy Lesson Help Settings Widgets Launching Forms Creating Shortcuts Adding Favorites List Driven

More information

Computer Application Practical

Computer Application Practical Computer Application Practical Periods / week-04 Total Mark :50 Total periods-60 Sessional : 25, Exam:25 Sl. No. Topic No. of periods 1 Basic Computer Operation 15 2 Word Processing 08 3 SPREADSHEET AND

More information

Free Microsoft Office 2010 training from MedCerts. Course Outline

Free Microsoft Office 2010 training from MedCerts. Course Outline Free Microsoft Office 2010 training from MedCerts Course Outline Microsoft Office Word 2010: Basic Course Introduction Unit 01 - Getting Started Topic A: The Word Window The Word 2010 Window Demo - A-1:

More information

Civil Engineering Computation

Civil Engineering Computation Civil Engineering Computation First Steps in VBA Homework Evaluation 2 1 Homework Evaluation 3 Based on this rubric, you may resubmit Homework 1 and Homework 2 (along with today s homework) by next Monday

More information

Microsoft Office Access 2013: Part 01. Lesson 01 - Getting Started with Access

Microsoft Office Access 2013: Part 01. Lesson 01 - Getting Started with Access Microsoft Office Access 2013: Part 01 Lesson 01 - Getting Started with Access Slide 1 Lesson 01: Getting Started with Access Orientation to Microsoft Access Create a Simple Access Database Get Help in

More information

Integration Office 2003

Integration Office 2003 Integration Office 2003 Table of Contents Copy and Paste... 3 Paste Special... 4 Copying Data from Excel into Word... 5 Copying Charts from Excel into Word... 6 Copying Charts from Excel into PowerPoint...

More information

Understanding and Using Microsoft Access Macros

Understanding and Using Microsoft Access Macros Understanding and Using Microsoft Access Macros Firstly, I would like to thank you for purchasing this Access database ebook guide; a useful reference guide on understanding and using Microsoft Access

More information

OpenOffice.org as a platform for developers

OpenOffice.org as a platform for developers OOoCon 2004 - Berlin OpenOffice.org as a platform for developers Mathias.Bauer@sun.com Mathias Bauer - OpenOffice.org Application Framework - Slide 1 Agenda Speaker introductions Features for development

More information

How To Access Everything Quicker With Alfred [Mac]

How To Access Everything Quicker With Alfred [Mac] How To Access Everything Quicker With Alfred [Mac] In the previous article we talked a little bit about Alfred, a free alternative application launcher for Mac. While it s not yet up to par to its seniors

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM E&P SOLUTIONS Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Petrel Studio Part 1 The Petrel Studio was new to Petrel 2011, was augmented with new features in Petrel 2012 and contains a variety of

More information

LIBREOFFICE TRAINING PROTOCOL

LIBREOFFICE TRAINING PROTOCOL LIBREOFFICE TRAINING PROTOCOL LibreOffice Training Protocol is a reference for professionals offering training services for LibreOffice, targeted at organizations and individuals deploying the free office

More information

What s New in Cognos. Cognos Analytics Participant s Guide

What s New in Cognos. Cognos Analytics Participant s Guide What s New in Cognos Cognos Analytics Participant s Guide Welcome to What s New in Cognos! Illinois State University has undergone a version upgrade of IBM Cognos to Cognos Analytics. All functionality

More information

To create a notebook on desktop version 1. Open One Note 2. File > New. o FILE. Options

To create a notebook on desktop version 1. Open One Note 2. File > New. o FILE. Options OneNote Training When you open OneNote for the first time there will be notebooks already started and you can see them on the left hand side. There is an introduction section that you can go through, if

More information

Lesson 25 Combining FEM Models

Lesson 25 Combining FEM Models Lesson 25 Combining FEM Models Purpose This lesson provides an overview of combining models Finite Elements Models with Femap Topics Femap Neutral files The Select Tool File, Merge command Femap 101 for

More information

NCMail: Microsoft Outlook User s Guide

NCMail: Microsoft Outlook User s Guide NCMail: Microsoft Outlook 2003 Email User s Guide Revision 1.0 11/10/2007 This document covers how to use Microsoft Outlook 2003 for accessing your email with the NCMail Exchange email system. The syntax

More information

Access. Basics PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM

Access. Basics PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM Access 2010 Basics PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 840 SOUTH ROESSLER STREET MONROE,

More information

9. Introduction to MS Access

9. Introduction to MS Access 9. Introduction to MS Access 9.1 What is MS Access? Essentially, MS Access is a database management system (DBMS). Like other products in this category, Access: o Stores and retrieves data, o Presents

More information

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

COMPUTER SKILLS LECTURE Dr. Ali Kattan Mr. Tooraj Hassan Mr. Mohamed Nasseh

COMPUTER SKILLS LECTURE Dr. Ali Kattan Mr. Tooraj Hassan Mr. Mohamed Nasseh COMPUTER SKILLS LECTURE 05 2017-2018 By Dr. Ali Kattan Mr. Tooraj Hassan Mr. Mohamed Nasseh 1 Windows Operating System (OS) In this lecture we will cover the following (Basics): Parts of Windows 10 Desktop

More information

A PRACTICAL TUTORIAL TO EXCEL

A PRACTICAL TUTORIAL TO EXCEL 2010 BEGINNERS A PRACTICAL TUTORIAL TO EXCEL by: Julio C. Fajardo A Practical Tutorial to Excel About: Excel is one of the early software tools developed by Microsoft. The program has been widely adopted

More information

AutoCAD VBA Programming

AutoCAD VBA Programming AutoCAD VBA Programming TOOLS AND TECHNIQUES John Gibband Bill Kramer Freeman fbooks San Francisco Table of Contents Introduction Chapter 1: The AutoCAD VBA Environment 1 AutoCAD Programming Solutions

More information

Create a New Notebook Create a New Notebook

Create a New Notebook Create a New Notebook Create a New Notebook Create a New Notebook Click File > New Select Computer or Your SkyDrive Type in Name of Notebook Click Create Notebook (Click to save to another file) Note: This is part of a database.

More information

Design your source document with accessibility in mind. Do NOT use character formatting for headings, use the program s styles.

Design your source document with accessibility in mind. Do NOT use character formatting for headings, use the program s styles. Contents 2 Create an Accessible Microsoft Word Document 2 Use Styles 3 Columns 5 Lists 6 Tables 7 Links 7 Add Alternative Text 9 Microsoft Word 2010 Accessibility Checker Adobe Acrobat X Creating Accessible

More information

Reading: Managing Files in Windows XP

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

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

Installing a Custom AutoCAD Toolbar (CUI interface) Installing a Custom AutoCAD Toolbar (CUI interface) I used 2008LT for this tutorial; you may have a later AutoCAD with a different appearance. However, the customize user interface (cui) should be similar.

More information

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide VBA Visual Basic for Applications Learner Guide 1 Table of Contents SECTION 1 WORKING WITH MACROS...5 WORKING WITH MACROS...6 About Excel macros...6 Opening Excel (using Windows 7 or 10)...6 Recognizing

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

Chapter 10 Linking Calc Data

Chapter 10 Linking Calc Data Calc Guide Chapter 10 Linking Calc Data Sharing data in and out of Calc This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an option

More information

SQLite vs. MongoDB for Big Data

SQLite vs. MongoDB for Big Data SQLite vs. MongoDB for Big Data In my latest tutorial I walked readers through a Python script designed to download tweets by a set of Twitter users and insert them into an SQLite database. In this post

More information

Forms/Distribution Acrobat X Professional. Using the Forms Wizard

Forms/Distribution Acrobat X Professional. Using the Forms Wizard Forms/Distribution Acrobat X Professional Acrobat is becoming a standard tool for people and businesses to use in order to replicate forms and have them available electronically. If a form is converted

More information

NCMail: Microsoft Outlook User s Guide

NCMail: Microsoft Outlook User s Guide NCMail: Microsoft Outlook 2007 Email User s Guide Revision 1.1 3/9/2009 This document covers how to use Microsoft Outlook 2007 for accessing your email with the NCMail Exchange email system. The syntax

More information

Welcome To Smartboard Technology. What Will You Learn In This PPT.?

Welcome To Smartboard Technology. What Will You Learn In This PPT.? Welcome To Smartboard Technology A Quick Fondy Tech Tutorial The Basics Of How To Get Started Using The Smartboard/Whiteboard What Will You Learn In This PPT.? This ppt. will focus on 6 basic areas of

More information

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Microsoft Windows PowerShell v2 For Administrators Course 50414 5 Days Instructor-led, Hands-on Introduction This four-day instructor-led course provides students with the knowledge and skills to leverage

More information

s i m p l y w o r k s

s i m p l y w o r k s CARA is an ergonomically designed, fast, web user interface and business rules engine, currently released for the following platforms: Documentum (alternative to Webtop or D2) Oracle WebCenter Alfresco

More information

Instructions for creating and modifying queries will be available in the future.

Instructions for creating and modifying queries will be available in the future. This document is intended to get you started quickly with BEx Analyzer 7.0. You will be able to open, run, and save queries; and export your data to Excel. Instructions for creating and modifying queries

More information

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide PROGRAMMING WITH REFLECTION: VISUAL BASIC USER GUIDE WINDOWS XP WINDOWS 2000 WINDOWS SERVER 2003 WINDOWS 2000 SERVER WINDOWS TERMINAL SERVER CITRIX METAFRAME CITRIX METRAFRAME XP ENGLISH Copyright 1994-2006

More information

Publishing Electronic Portfolios using Adobe Acrobat 5.0

Publishing Electronic Portfolios using Adobe Acrobat 5.0 Step-by-Step Publishing Electronic Portfolios using Adobe Acrobat 5.0 2002, Helen C. Barrett Here is the process we will use to publish a digital portfolio using Adobe Acrobat. The portfolio will include

More information

Microsoft Excel 2007 Macros and VBA

Microsoft Excel 2007 Macros and VBA Microsoft Excel 2007 Macros and VBA With the introduction of Excel 2007 Microsoft made a number of changes to the way macros and VBA are approached. This document outlines these special features of Excel

More information

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB Visual Programming 1. What is Visual Basic? Visual Basic is a powerful application development toolkit developed by John Kemeny and Thomas Kurtz. It is a Microsoft Windows Programming language. Visual

More information

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

AD07 A Tool to Automate TFL Bundling

AD07 A Tool to Automate TFL Bundling AD07 A Tool to Automate TFL Bundling Mark Crangle ICON Clinical Research Introduction Typically, requirement for a TFL package is a bookmarked PDF file with a table of contents Often this means combining

More information

Getting Started Guide

Getting Started Guide SnagIt Getting Started Guide Welcome to SnagIt Thank you for your purchase of SnagIt. SnagIt is the premier application to use for all of your screen capturing needs. Whatever you can see on your screen,

More information

The Road to CCSv4. Status Update

The Road to CCSv4. Status Update The Road to CCSv4 Status Update Code Composer Studio v4 Summary What is it? Major upgrade to CCS Major architectural changes Based on Eclipse open source software framework New registration/licensing/updating

More information

What s new in Femap 9.3

What s new in Femap 9.3 What s new in Femap 9.3 fact sheet www.ugs.com/femap Summary Femap version 9.3 is the latest release of UGS robust pre and post processor for engineering finite element analysis (FEA). Femap software is

More information

Manual Calculation Definition Excel Shortcut Keyboard

Manual Calculation Definition Excel Shortcut Keyboard Manual Calculation Definition Excel Shortcut Keyboard Pressing Esc on your keyboard will allow you to exit Excel formula editing. If you have set your Excel formulas to calculate manually, and want to

More information

Unit 29. Installing and Upgrading Software Level 3

Unit 29. Installing and Upgrading Software Level 3 Unit 29 Installing and Upgrading Software Level 3 Todays Session What is software? Types of software Software uses What is software? Software is a collection of instructions that enable the user to interact

More information

PRODUCTIVITY TIPS USING OUTLOOK Washtenaw Community College

PRODUCTIVITY TIPS USING OUTLOOK Washtenaw Community College PRODUCTIVITY TIPS USING OUTLOOK 2016 Washtenaw Community College August 23, 2018 TABLE OF CONTENTS Email Management... 3 1. Create a Rule:... 3 2. Add a Folder to Your Favorites... 3 To Show Folders in

More information

MFC One Step At A Time By: Brandon Fogerty

MFC One Step At A Time By: Brandon Fogerty MFC One Step At A Time 1 By: Brandon Fogerty Development Environment 2 Operating System: Windows XP/NT Development Studio: Microsoft.Net Visual C++ 2005 Step 1: 3 Fire up Visual Studio. Then go to File->New->Project

More information

Getting Started With Estimating Extended

Getting Started With Estimating Extended Getting Started With Estimating Extended NOTICE This document and the Sage Timberline Office software may be used only in accordance with the accompanying Sage Timberline End User License Agreement. You

More information

INSTALLATION AND USER GUIDE

INSTALLATION AND USER GUIDE INSTALLATION AND USER GUIDE Introduction 1 Introduction About 6140 Agent Portal Mitel Networks 6140 Agent Portal allows an agent to receive call information via a number of different applications that

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

Automa6on and API Programming with Femap and NX Nastran

Automa6on and API Programming with Femap and NX Nastran Automa6on and API Programming with An introduc6on to the Femap Applica6on Programming Interface using a blend of theory and prac6ce that allows students to automate modeling processes, modify the model,

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

» How do I Integrate Excel information and objects in Word documents? How Do I... Page 2 of 10 How do I Integrate Excel information and objects in Word documents? Date: July 16th, 2007 Blogger: Scott Lowe

More information

OneNote. Using OneNote on the Desktop. Starting screen. The OneNote interface the Ribbon

OneNote. Using OneNote on the Desktop. Starting screen. The OneNote interface the Ribbon OneNote Using OneNote on the Desktop 1. Click start on the task bar 2. Type OneNote (search is a quick way to find applications, documents and other items on your computer) 3. Select Microsoft OneNote

More information

5. Excel Fundamentals

5. Excel Fundamentals 5. Excel Fundamentals Excel is a software product that falls into the general category of spreadsheets. Excel is one of several spreadsheet products that you can run on your PC. Others include 1-2-3 and

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 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

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 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

COMPUTER COURSE OFFERINGS

COMPUTER COURSE OFFERINGS COMPUTER COURSE OFFERINGS IPAD AND IPHONE... 2 IPAD BASICS... 2 IPHONE BASICS... 2 KEYNOTE PRESENTATION BASICS... 2 MICROSOFT COURSES... 3 INTRODUCTION TO PERSONAL COMPUTERS: USING MICROSOFT WINDOWS 8...

More information

IBM. Database Database overview. IBM i 7.1

IBM. Database Database overview. IBM i 7.1 IBM IBM i Database Database overview 7.1 IBM IBM i Database Database overview 7.1 Note Before using this information and the product it supports, read the information in Notices, on page 39. This edition

More information

Getting Started with ConceptDraw MINDMAP v9 for Windows

Getting Started with ConceptDraw MINDMAP v9 for Windows Getting Started with ConceptDraw MINDMAP v9 for Windows CS Odessa corp. Contents GETTING STARTED WITH ConceptDraw MINDMAP...3 CREATING MIND MAPS...4 ADDING DETAILS...6 SYMBOLS AND GRAPHIC IMAGES...6 HYPERLINKS

More information

Quick Start Guide. Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.

Quick Start Guide. Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Quick Start Guide Microsoft OneNote 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Switch between touch and mouse If you re using OneNote

More information

Installing SQL Server Developer Last updated 8/28/2010

Installing SQL Server Developer Last updated 8/28/2010 Installing SQL Server Developer Last updated 8/28/2010 1. Run Setup.Exe to start the setup of SQL Server 2008 Developer 2. On some OS installations (i.e. Windows 7) you will be prompted a reminder to install

More information

[Type text] Quick Start Guide Version 3

[Type text] Quick Start Guide Version 3 [Type text] Quick Start Guide Version 3 PRO-STUDY QUICK START GUIDE Contents The Pro-Study Toolbar... 2 Getting Started with a Project... 3 Selecting Different Projects... 4 Categories... 4 Collecting

More information

Understanding Advanced Workflow

Understanding Advanced Workflow IBM Content Manager for iseries Understanding Advanced Workflow Version 5 Release 1 SC27-1138-00 IBM Content Manager for iseries Understanding Advanced Workflow Version 5 Release 1 SC27-1138-00 Note Before

More information

Outlook Express. Setting up the View. Toolbar. Listing of messages OUTLOOK BAR. Status Bar

Outlook Express. Setting up the View. Toolbar. Listing of messages OUTLOOK BAR. Status Bar Outlook Express Toolbar Listing of messages OUTLOOK BAR Status Bar Setting up the View Before using Microsoft Outlook, you need to understand the Layout of the program. To setup a view that you are comfortable

More information

Introducing Rational ClearQuest

Introducing Rational ClearQuest Introducing Rational ClearQuest support@rational.com http://www.rational.com IMPORTANT NOTICE COPYRIGHT NOTICE ClearQuest, copyright 1997-1999 Rational Software Corporation. All rights reserved. THIS DOCUMENT

More information

The Foundation. Review in an instant

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

More information

Opening and Using Programs

Opening and Using Programs Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

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

Force Excel to Calculate Dependencies In Order

Force Excel to Calculate Dependencies In Order Force Excel to Calculate Dependencies In Order Overview If you have ever used custom functions in Excel, depending on the complexity of them, you have probably run into an issue where the accuracy of the

More information

An Introduction to MATLAB See Chapter 1 of Gilat

An Introduction to MATLAB See Chapter 1 of Gilat 1 An Introduction to MATLAB See Chapter 1 of Gilat Kipp Martin University of Chicago Booth School of Business January 25, 2012 Outline The MATLAB IDE MATLAB is an acronym for Matrix Laboratory. It was

More information

Lab 3.1 : The Task Manager

Lab 3.1 : The Task Manager Lab 3.1 : The Task Manager Using the Windows NT or Windows 2000 Task Manager, you can examine processes that are running, the number of threads a process has, system performance, and page faults. Windows

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

Table of Contents Memory Management... 3 Results Enveloping... 5 Set Random Property Colors... 8 Model Box Extend Merge Mesh...

Table of Contents Memory Management... 3 Results Enveloping... 5 Set Random Property Colors... 8 Model Box Extend Merge Mesh... 1 Table of Contents Memory Management... 3 Results Enveloping... 5 Set Random Property Colors... 8 Model Box... 11 Extend Merge Mesh... 13 NonManifold Add... 16 Element Visual Inspection... 18 Graphical

More information

Manual Calculation Definition Excel Vba Code

Manual Calculation Definition Excel Vba Code Manual Calculation Definition Excel Vba Code If I turn Calculation on Manual then my values are no good because they are (say, $AA$4:$AC$2004 ) and use Excel formulas to automatically calculate the a specific

More information

Introduction to LibreOffice 5

Introduction to LibreOffice 5 Sun City Summerlin Computer Club Seminar Introduction to LibreOffice 5 Tom Burt October 26, 2017 Where to Find the Materials Sun City Summer Computer Club Website: http://www.scscc.club/smnr/libreoffice5-introduction.pdf

More information