For more detailed information on the differences between DelphiScript and Object Pascal, refer to the DelphiScript Reference document.

Size: px
Start display at page:

Download "For more detailed information on the differences between DelphiScript and Object Pascal, refer to the DelphiScript Reference document."

Transcription

1 Writing Scripts Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related pages Script Editor Tools Scripting System Panels Parent page: Scripting Writing Scripts There a number of essential concepts and terms that apply to writing scripts: Processes are command strings that you can use to execute Altium Designer commands in scripts. Components are visual objects on the Tool Palette panel that you can drag and drop onto a script form to manipulate at design time. A component (or a control) that is placed on a script form has methods, properties, and events. Object Interfaces are special object interfaces that you can use to extract and modify data on design documents from your scripts. Script Languages The Altium Designer scripting system offers five different script languages: DelphiScript (*.pas) EnableBasic (*.bas) VisualBasic Script (*.vbs) JavaScript (*.js) TCL (*.tcl) The scripting engine itself is written in Embarcadero Delphi, and the Tool Palette panel is based on the Delphi's VCL (Visual Component Library). While DelphiScript is based on Object Pascal, there are some differences between DelphiScript and Object Pascal. For more detailed information on the differences between DelphiScript and Object Pascal, refer to the DelphiScript Reference document. A DelphiScript Unit A quick and basic scripting exercise can be completed by first creating a new project and script file in Altium Designer, as described previously. Assuming the project and script file are set to the DelphiScript language, a simple Hello World script can be entered as below.

2 Procedure ShowAMessage; Var DefaultMessage; DefaultMessage := 'Hello World!'; ShowMessage(DefaultMessage); When a document is edited, an asterisk appears next to the script document and the icon on the Projects panel changes to red. When a script code line is edited, a red block appears in the line's left margin, indicating that the line has changed. Within the procedure is a standard DelphiScript ShowMessage function that opens a simple dialog with the "Hello World" message, as defined by the DefaultMessage variable. Since all variables are of the variant type in scripts there is no need to define the DefaultMessage variable type in the script. Running the Script To execute the script, invoke the Select Item To Run dialog (DXP» Run Script) and select the script's ShowAMessage procedure from the list. If there are errors in your script, Altium Designer will prompt you with an error message. The script can be saved by selecting File» Save.

3 Running a simple HelloWorld script unit from the DXP» Run Script menu. This script has a procedure with no parameters. Only procedures or functions that don't have parameters appear in the Select Item To Run dialog. Procedures that require passed parameters are called from within the script (or from another script), but not from an external system such as the Select Item To Run dialog where parameters are not passed. A script can also be executed using the editor's Run command, accessed by the Run button, the F9 shortcut key or by selecting Run» Run from the main menu. Along with the Run command itself, the dropdown Run menu offers a range of script control and debugging commands. When the Run command is selected for the first time, the Select Item to Run dialog will open allowing you to specify a script's main procedure (ShowAMessage in this case). Once set, the script is easy to run repeatedly from the editor using the Run button. Use the Run» Set Project Startup Procedure to change the setting to a different procedure, or close and reopen the script project to clear the setting. To stop a running script (that may have paused at an error, for example), use the Stop button, select Run» Stop from the main menu or use the Ctrl+F3 shortcut. A DelphiScript Form Expanding on the HelloWorld project created above, a functionally similar script can be created using a form unit. A script form is a window (or in the active sense, a dialog) that can host a range of controls such as buttons, memos and list boxes. It has event handlers that respond when a control has generated an event, such as when a button is clicked. To create the new script form, right-click on the project name, choose the Add New to Project option and select Delphi Script Form. The script can be saved a renamed using the File» Save As menu. The script form creates two files: a *.dfm file that defines the form window elements and handles, and a *.pas file that hosts the form's event handlers and procedures or functions. To see and edit the property values for the currently focused form or its components, open the Object Inspector panel from the Script button at the bottom of the design window. The Object Inspector panel is used to change the color, size, etc of the Form, and insert code in the event handlers associated with the current form.

4 The Form window's configuration and properties are exposed in the Object Inspector panel, opened via the Script button. Note that the Form unit offers two tabs at the bottom of the document: the Code and Form tabs. The Form tab displays the current form window as shown above, while the Code tab opens the form code for the event handlers and procedures. Use the tabs or the F12 shortcut key to change between the two. The terms dialog and script form (or form for short) are descriptively equivalent in this guide. The 'form' term refers to the window that is being designed real-time in the scripting system, and a 'dialog' is an active form in Altium Designer that is waiting for user feedback and takes action when a dialog button or a control has been clicked. The Object Inspector panel shows the values of the properties for the currently focused form or its components. For this form script, change the Name and the Caption properties of the form in the Object Inspector panel to HelloWorldForm and Hello World! respectively, as shown below. These strings match those used in the example event handler and procedure code shown further below.

5 Use the Object Inspector panel to configure the form dialog and its action. See Scripting System Panels for more information the Object Inspector and Tool Palette panels. Add and Configure Controls With the basic form configured, controls can be added to the dialog as required by accessing the Tool Palette panel. To open this choose the Tool Palette option after clicking the Script button at the bottom of the design window. The Tool Palette, based on the Delphi's Visual Component Library, is a component palette that offers a wide range of window controls that are organized as component categories (see the Palette's Component Reference for more details).

6 The Tool Palette sections can be expanded and collapsed using the section heading tabs. For the dialog version of the Hello World project there are two buttons on the form: Display and Close. Click TButton (image of an OK button) in the Standard section of the Tool Palette panel as shown above. Do this twice to place two buttons on the form. One button will be used to display a Hello World! message on separate dialog, and the second button is used to close the main dialog. Components can be placed on a script form by double clicking the component on the Tool Palette panel, or by clicking the component once and then clicking on the form where you want the component to appear.

7 Select a component and edit its properties in the Object Inspector panel. Using the Object Inspector panel, the two button configurations can be changed from their default names and captions. Configure the first button name to bdisplay and its caption to Display. Configure the second button name to bclose and and its caption to Close. This is to match the example event handler code presented below. The comments box at the bottom of the Object Inspector panel provide a description of the highlighted property. Event hander code can be constructed by directly referencing the controls (buttons in this case) on the form. For this example, the Display button will instigate a ShowMessage dialog on top of the existing form, and the Close button action will simply close this form. Event Handler Code Double clicking on the Display button will open the form in Code view and create the skeleton code for its event handler. Alternatively, select the button and then the Events tab in the Object Inspector panel. Double clicking on the OnClick event in the panel will open the code view as above. Within the Code view, the ShowMessage statement can be included in the event handler as shown in the listing below. Procedure THelloWorldForm.bDisplayClick(Sender: TObject); ShowMessage('Hello World!');

8 To view pre-defined event handlers for any component on your script form, select the component, then click on Events tab in the Object Inspector panel. Similarly, the event handler for the Close button can be defined by generating an OnClick event that applies the Close (form) statement: Procedure THelloWorldForm.bCloseClick(Sender: TObject); Close; With the event handlers defined, there needs to be a procedure (appropriately called RunHelloWorld) in the script to be used as the starting point when calling up the dialog from Altium Designer. This is added at the end of the code script. Note that the form name is HelloWorldForm and the procedure name in RunHelloWorld it's important to have unique form names in the same script to avoid form name clashes. Procedure RunHelloWorld; HelloWorldForm.ShowModal; The script can be saved if need be, and then executed from the DXP system menu (DXP» Run Script) by running the RunHelloWorld procedure item under the HelloWorldDialog entry. Alternatively, the procedure can be assigned to the Run command/button via the Run» Set Startup Project Procedure menu. Running a simple HelloWorld form script, where the form Display button activates a ShowMessage dialog.

9 The Object Inspector panel makes it very easy to change the properties and events of a form unit. For example to change the position of the form with respect to the desktop screen or the Altium Designer workspace, use the panel to alter the poscreencenter value for the form's the Position property. The dialog will now be placed at the center of the desktop screen when the script is run. A reference version of the Hello World project scripts can be found in the Scripts\Delphiscript Scripts\General folder of the downloadable script collection. Calling a Procedure As mentioned above, any script (using the same language set) within a project has access to global variables and procedures, so a procedure in one script can call another procedure in a different script in the project. This can be demonstrated by the additional ShowAParametricMessage code section in the HelloWorld example project: Procedure ShowAParametricMessage(S : String); Var DefaultMessage; DefaultMessage := 'Hello World!'; If S = '' Then ShowMessage(DefaultMessage) Else ShowMessage(S); This establishes a string variable 'S' that can be passed to the ShowAParametricMessage procedure. The passed string will be displayed using the ShowMessage dilaog function, whereas a simple If- Then-Else method causes a default 'Hello World!' message to display if the string is empty. To see this in action, open the example project (HelloWorld.PrjScr) and add the grey highlighted line into the HelloWorldDialog script (not the HelloWorld script), as shown below.... Procedure THelloWorldForm.bDisplayClick(Sender: TObject); Showmessage('Hello World!'); Procedure THelloWorldForm.bCloseClick(Sender: TObject); ShowAParametricMessage('Goodbye World'); close;

10 Procedure RunHelloWorld; HelloWorldForm.ShowModal;... When the HelloWorldDialog script is run and the Close button clicked, the global ShowAParametricMessage procedure is called from the HelloWorld script. A parametric procedure in the HelloWorld script is called form the HelloWorldDialog script. The call passes 'Goodbye World' message string to the ShowAParametricMessage procedure, so this message is displayed when the Close button is clicked, prior to the form closing. The script call shown above inserts a specified message in the HelloWoldDialog form close procedure. If the passed string parameter is empty, ShowAParametricMessage(''), then the default 'Hello World!' message is displayed as defined in the ShowAParametricMessage procedure.

11 See the 'Scripting Shortcut Keys' section on the Script Editor Tools page for a list of shortcut keys that help to streamline the process of writing and debugging scripts. Source URL:

A Tour of the Scripting System. Contents

A Tour of the Scripting System. Contents A Tour of the Scripting System Contents Features of the Scripting System Script Projects and Scripts Scripting Editor Scripting Panels Scripting Debugger Several Scripting Languages Application Programming

More information

The scripting system handles two types of components: Visual and Non-visual components.

The scripting system handles two types of components: Visual and Non-visual components. Forms and Components Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Parent page: DelphiScript Overview of Graphical Components The scripting system handles two types of components:

More information

A method is a procedure that is always associated with an object and defines the behavior of that object.

A method is a procedure that is always associated with an object and defines the behavior of that object. Using Form Components Old Content - visit altium.com/documentation Modified by Rob Evans on 15-Feb-2017 Parent page: VBScript Using Components in VBScript Forms Although Forms and Components are based

More information

The following content has been imported from Legacy Help systems and is in the process of being checked for accuracy.

The following content has been imported from Legacy Help systems and is in the process of being checked for accuracy. Tool Palette Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 The following content has been imported from Legacy Help systems and is in the process of being checked for accuracy.

More information

JScript Reference. Contents

JScript Reference. Contents JScript Reference Contents Exploring the JScript Language JScript Example Altium Designer and Borland Delphi Run Time Libraries Server Processes JScript Source Files PRJSCR, JS and DFM files About JScript

More information

Published on Online Documentation for Altium Products (https://www.altium.com/documentation)

Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Altium DXP Developer Using Altium Documentation Modified by Rob Evans on May 16, 2018 Reference information

More information

The Altium Designer Scripting system offers a full featured debugging environment.

The Altium Designer Scripting system offers a full featured debugging environment. Debugging Scripts Old Content - visit altium.com/documentation Modified by Rob Evans on 15-Feb-2017 Related pages Script Editor Tools Scripting System Panels Parent page: Scripting The Altium Designer

More information

JScript Reference. Summary. Exploring the JScript language. Introduction. This reference manual describes the JScript scripting language used in DXP.

JScript Reference. Summary. Exploring the JScript language. Introduction. This reference manual describes the JScript scripting language used in DXP. Summary Technical Reference TR0122 (v1.0) December 01, 2004 This reference manual describes the JScript scripting language used in DXP. Exploring the JScript language The following topics are covered in

More information

Running Scripts in Altium Designer. Executing scripts. Script as a Command. Modified by on 13-Sep-2017

Running Scripts in Altium Designer. Executing scripts. Script as a Command. Modified by on 13-Sep-2017 Running Scripts in Altium Designer Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related information Customizing the Altium Designer Resources Parent page: Scripting While the

More information

The following topics are covered in this reference:

The following topics are covered in this reference: JScript Reference Summary The following topics are covered in this reference: Exploring the JScript Language This reference manual JScript Source Files describes the JScript About JScript Examples scripting

More information

5 WAYS TO CUSTOMIZE ALTIUM DESIGNER FOR BETTER EFFICIENCY

5 WAYS TO CUSTOMIZE ALTIUM DESIGNER FOR BETTER EFFICIENCY Menu items, shortcut keys, and toolbar icons are the three ways of accessing features within the Altium Designer environment. All of these are customizable and may enhance the user experience with Altium

More information

Storage Manager. Summary. Panel access. Modified by on 10-Jan-2014

Storage Manager. Summary. Panel access. Modified by on 10-Jan-2014 Storage Manager Old Content - visit altium.com/documentation Modified by on 10-Jan-2014 Related panel: Differences Panel Related documents: Version Control and Altium Designer Version Control Terminology

More information

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations

Part I. Integrated Development Environment. Chapter 2: The Solution Explorer, Toolbox, and Properties. Chapter 3: Options and Customizations Part I Integrated Development Environment Chapter 1: A Quick Tour Chapter 2: The Solution Explorer, Toolbox, and Properties Chapter 3: Options and Customizations Chapter 4: Workspace Control Chapter 5:

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

Getting started with Lazarus

Getting started with Lazarus Getting started with Lazarus Michaël Van Canneyt March 4, 2006 Abstract Lazarus is a cross-platform 2-way RAD tool which can be used to develop almost any kind of program for Windows, Linux, Solaris or

More information

Skill Area 336 Explain Essential Programming Concept. Programming Language 2 (PL2)

Skill Area 336 Explain Essential Programming Concept. Programming Language 2 (PL2) Skill Area 336 Explain Essential Programming Concept Programming Language 2 (PL2) 336.2-Apply Basic Program Development Techniques 336.2.1 Identify language components for program development 336.2.2 Use

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

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

Zend Studio 3.0. Quick Start Guide

Zend Studio 3.0. Quick Start Guide Zend Studio 3.0 This walks you through the Zend Studio 3.0 major features, helping you to get a general knowledge on the most important capabilities of the application. A more complete Information Center

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

DelphiScript Keywords

DelphiScript Keywords DelphiScript Keywords Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 This reference covers the DelphiScript keywords used for the Scripting System in Altium Designer. The scripting

More information

Preparing Chart Aggregations with Custom Report

Preparing Chart Aggregations with Custom Report 5 Gould Road, PO Box 2155 New London, NH 03257 USA Voice: (603) 526-9800 info@canarysystems.com www.canarysystems.com Preparing Chart Aggregations with Custom Report Overview The Custom Report tool allows

More information

Folders Projects, Folders and Menus. Table of Contents. 1.0 Folder Types. 2.0 Folder Menu Commands

Folders Projects, Folders and Menus. Table of Contents. 1.0 Folder Types. 2.0 Folder Menu Commands Folders Projects, Folders and Menus Table of Contents 1.0 Folder Types 2.0 Folder Menu Commands 1.0 Folder Types ProjectWise folders differ from Windows folders in that each ProjectWise folder has a type,

More information

BRIEFCASES & TASKS ZIMBRA. Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases.

BRIEFCASES & TASKS ZIMBRA. Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases. BRIEFCASES & TASKS ZIMBRA BRIEFCASES Briefcase can be used to share and manage documents. Documents can be shared, edited, and created using Briefcases. Options Briefcase New Briefcase To create briefcases,

More information

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Storage Manager Using Altium Documentation Modified by Jason Howie on Jun 16, 2017 Parent page: System

More information

PCB Filter. Summary. Panel Access. Modified by Admin on Dec 12, PCB Inspector. Parent page: Panels

PCB Filter. Summary. Panel Access. Modified by Admin on Dec 12, PCB Inspector. Parent page: Panels PCB Filter Old Content - visit altium.com/documentation Modified by Admin on Dec 12, 2013 Related panels PCB Inspector Parent page: Panels Quickly locate and highlight objects using logical queries in

More information

Customizing the Altium Designer Resources

Customizing the Altium Designer Resources Customizing the Altium Designer Resources Summary This tutorial describes how to customize your Altium Designer resources, such as commands, menus, toolbars and shortcut keys. This tutorial describes how

More information

Published on Online Documentation for Altium Products (https://www.altium.com/documentation)

Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Support for Parameters in PCB Footprints Using Altium Documentation Modified by Jason Howie on Apr 11,

More information

PCB 3D Movie Editor. Summary. Modified by on 13-Sep D PCB Movie Editor. Parent page: Panels

PCB 3D Movie Editor. Summary. Modified by on 13-Sep D PCB Movie Editor. Parent page: Panels PCB 3D Movie Editor Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related Videos 3D PCB Movie Editor Parent page: Panels Use the PCB 3D Movie Editor panel to create a 3D movie.

More information

Altium Designer Panels. Contents

Altium Designer Panels. Contents Altium Designer s Contents CAM Editor Design Compiler s Embedded s Instrument-Rack s Other Instrument s PCB Editor and PCB Library Editor s Schematic Editor and Schematic Library Editor s Scripting s Signal

More information

SCH Filter. Summary. Panel Access. Modified by Susan Riege on Jan 19, SCH Inspector. Parent page: Panels

SCH Filter. Summary. Panel Access. Modified by Susan Riege on Jan 19, SCH Inspector. Parent page: Panels SCH Filter Old Content - visit altium.com/documentation Modified by Susan Riege on Jan 19, 2016 Related panels SCH Inspector Parent page: Panels Quickly locate and highlight objects using logical queries

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Simulation Profiles Using Altium Documentation Modified by Jason Howie on Dec 14, 2017 Along with other

More information

User Guide. BlackBerry Workspaces for Windows. Version 5.5

User Guide. BlackBerry Workspaces for Windows. Version 5.5 User Guide BlackBerry Workspaces for Windows Version 5.5 Published: 2017-03-30 SWD-20170330110027321 Contents Introducing BlackBerry Workspaces for Windows... 6 Getting Started... 7 Setting up and installing

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

Schematic Symbol Generation Tool

Schematic Symbol Generation Tool Schematic Symbol Generation Tool Old Content - visit altium.com/documentation Modified by Rob Evans on May 4, 2015 The task of creating a component library symbol and its pin data has become an increasingly

More information

SCH Inspector. Modified by Admin on Dec 12, SCH Filter. Parent page: Panels. Old Content - visit altium.com/documentation.

SCH Inspector. Modified by Admin on Dec 12, SCH Filter. Parent page: Panels. Old Content - visit altium.com/documentation. SCH Inspector Old Content - visit altium.com/documentation Modified by Admin on Dec 12, 2013 Related panels SCH Filter Parent page: Panels Manually select Schematic objects or use the SCH Filter Panel

More information

Netherworks Studios. Start DAZ Studio 3 and simply navigate to "NWS Scripts" in your content folder. Run the "Activate Folder Favorites" script.

Netherworks Studios. Start DAZ Studio 3 and simply navigate to NWS Scripts in your content folder. Run the Activate Folder Favorites script. Folder Favorites Guide Netherworks Studios Overview: Netherworks' Folder Favorites provides an easy and concise way to navigate through content folders (View Folders List or Tree views) by utilizing a

More information

Baseline dimension objects are available for placement in the PCB Editor only. Use one of the following methods to access a placement command:

Baseline dimension objects are available for placement in the PCB Editor only. Use one of the following methods to access a placement command: Baseline Dimension Old Content - visit altium.com/documentation Modified by on 19-Nov-2013 Parent page: Objects A placed Baseline Dimension. Summary A baseline dimension is a group design object. It allows

More information

Component Templates. The Component Template Item Type. Modified by Jason Howie on 31-May-2017

Component Templates. The Component Template Item Type. Modified by Jason Howie on 31-May-2017 Component Templates Old Content - see latest equivalent Modified by Jason Howie on 31-May-2017 Altium Vault 2.5, in conjunction with Altium Designer 15.1, brings support for creating and defining Component

More information

Getting Started with Python and the PyCharm IDE

Getting Started with Python and the PyCharm IDE New York University School of Continuing and Professional Studies Division of Programs in Information Technology Getting Started with Python and the PyCharm IDE Please note that if you already know how

More information

MarkLogic Server. Query Console User Guide. MarkLogic 9 May, Copyright 2018 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Query Console User Guide. MarkLogic 9 May, Copyright 2018 MarkLogic Corporation. All rights reserved. Query Console User Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-7, September 2018 Copyright 2018 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User Guide

More information

Using the Dev C++ Compiler to Create a Program

Using the Dev C++ Compiler to Create a Program This document assumes that you have already installed the Dev-C++ Compiler on your computer and run it for the first time to setup the initial configuration. USING DEV-C++ TO WRITE THE POPULAR "HELLO WORLD!"

More information

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials

with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials with TestComplete 12 Desktop, Web, and Mobile Testing Tutorials 2 About the Tutorial With TestComplete, you can test applications of three major types: desktop, web and mobile: Desktop applications - these

More information

PCB Project Configurations

PCB Project Configurations PCB Project Configurations Frozen Content Modified by Admin on Sep 13, 2017 Parent article: Board Design Release PCB design projects (*.PrjPcb) are design-side entities, containing the source documents

More information

Using the JSON Iterator

Using the JSON Iterator Using the JSON Iterator This topic describes how to process a JSON document, which contains multiple records. A JSON document will be split into sub-documents using the JSON Iterator, and then each sub-document

More information

5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP

5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP 5.5.3 Lab: Managing Administrative Settings and Snap-ins in Windows XP Introduction Print and complete this lab. In this lab, you will use administrative tools to monitor system resources. You will also

More information

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder.

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Lesson 1 using Dreamweaver CS3 To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Click here to get images for your web page project. (Note:

More information

Computer Science AP 2017 Summer Assignment Mrs. McFarland

Computer Science AP 2017 Summer Assignment Mrs. McFarland Computer Science AP 2017 Summer Assignment Mrs. McFarland Read Chapter 1 from the book Think Java: How to Think Like a Computer Scientist by Allen B. Downey. I have included Chapter 1 in this pdf. If you

More information

Visual GLCD. Creating the First Project. additional software. GUI design made easy

Visual GLCD. Creating the First Project. additional software. GUI design made easy Creating the First Project Software for rapid development of graphical user interfaces for various types of GLCDs in embedded devices. additional software Visual GLCD GUI design made easy SOFTWARE FOR

More information

For this option, you need a flash drive or CD (CD-R or CD-RW). NOTE: If you use a CD-R, be careful not to close the session.

For this option, you need a flash drive or CD (CD-R or CD-RW). NOTE: If you use a CD-R, be careful not to close the session. DSP&S Butte College Saving: MP3 File Kurzweil 3000 For this option, you need a flash drive or (-R or -RW). NOTE: If you use a -R, be careful not to close the session. This will allow you to: Save your

More information

OSIsoft PI Custom Datasource. User Guide

OSIsoft PI Custom Datasource. User Guide OSIsoft PI Custom Datasource User Guide Nov 2015 1. Introduction... 5 Key Capabilities... 6 Retrieving PI Tag Lists... 6 Retrieving PI Tag Data... 6 Retrieving AF Elements, Metadata and Data... 7 Retrieving

More information

ERC: Portal Favorites Advanced Options Quick Reference Guide

ERC: Portal Favorites Advanced Options Quick Reference Guide When you have created Portal Favorites for frequently visited areas of the Employee Resource Center (ERC) there are additional preferences you can set. This QRG will provide you with several options for

More information

1 Build Your First App. The way to get started is to quit talking and begin doing. Walt Disney

1 Build Your First App. The way to get started is to quit talking and begin doing. Walt Disney 1 Build Your First App The way to get started is to quit talking and begin doing. Walt Disney Copyright 2015 AppCoda Limited All rights reserved. Please do not distribute or share without permission. No

More information

MarkLogic Server. Query Console User Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Query Console User Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Query Console User Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-1, May, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User Guide 1.0

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

Published on Online Documentation for Altium Products (http://www.altium.com/documentation)

Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Home > Managed Projects Usability Improvements A New Era for Documentation Modified by Rob Evans on Apr 11, 2017

More information

May 10: Lesson 2 Creating your First Windows and Mac Desktop Application

May 10: Lesson 2 Creating your First Windows and Mac Desktop Application May 10: Lesson 2 Creating your First Windows and Mac Desktop Application Version: 1.1 Last Updated: May 13, 2012 Presented: May 23, 2012 Prepared by: David Intersimone David I, Embarcadero Technologies

More information

Published on Online Documentation for Altium Products (http://www.altium.com/documentation)

Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Home > PCB Pad Via Templates A New Era for Documentation Modified on Apr 11, 2017 Parent page: PCB Panels The

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

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

MODEL-BASED DEVELOPMENT -TUTORIAL

MODEL-BASED DEVELOPMENT -TUTORIAL MODEL-BASED DEVELOPMENT -TUTORIAL 1 Objectives To get familiar with the fundamentals of Rational Rhapsody. You start with the simplest example possible. You end with more complex functionality, and a more

More information

Schematic Inspector Panel. Contents

Schematic Inspector Panel. Contents Schematic Inspector Panel Contents Function Content and Use Defining Panel Display Scope Inspecting Object Attributes Kind Notes See Also Design Graphical Object Specific Editing Object Attributes Editing

More information

Intraweb versus Morfik

Intraweb versus Morfik Intraweb versus Morfik Michaël Van Canneyt August 2, 2009 Abstract Intraweb - Currently at version 10 - has been around for quite some time. It is a mature technology, and as such can be expected to have

More information

Quick Start Guide for Lotus Notes 8.5.1

Quick Start Guide for Lotus Notes 8.5.1 Quick Start Guide for Lotus Notes 8.5.1 ELEMENTS OF LOTUS NOTES... 2 SOME NEW FEATURES:... 2 HOME PAGE... 3 Customize the Home page... 4 SET USER PREFERENCES... 4 Personalizing Your E-mail... 5 Personalizing

More information

Adobe Encore DVD Tutorial:

Adobe Encore DVD Tutorial: Adobe Encore DVD Tutorial: Here is a simple tutorial for creating DVDs which will play Dolby Digital audio: 1. Plan the DVD project. Think through your DVD project. Decide how many audio tracks you want

More information

Double Click in in this space to open the the Calculator/Formula

Double Click in in this space to open the the Calculator/Formula TASK #2 Math II - FATHOM 10 coin Flips (How many coins would you predict land on heads?) Open a new Fathom Workspace. Drag a collection,, from the shelf into the workspace. Open the collection by positioning

More information

Installing VS Code. Instructions for the Window OS.

Installing VS Code. Instructions for the Window OS. Installing VS Code Instructions for the Window OS. VS Code is a free text editor created by Microsoft. It is a lightweight version of their commercial product, Visual Studio. It runs on Microsoft Windows,

More information

FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS AUTOMATIC FILENAMING

FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS AUTOMATIC FILENAMING FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS AUTOMATIC FILENAMING Table of Contents AUTOMATIC FILE NAMING... 3 Introduction... 3 What does it do?... 3 How does it work?... 3 How can you use it?...

More information

Hands-On Lab. Lab: Developing BI Applications. Lab version: Last updated: 2/23/2011

Hands-On Lab. Lab: Developing BI Applications. Lab version: Last updated: 2/23/2011 Hands-On Lab Lab: Developing BI Applications Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: USING THE CHARTING WEB PARTS... 5 EXERCISE 2: PERFORMING ANALYSIS WITH EXCEL AND

More information

End-User Reference Guide Troy University OU Campus Version 10

End-User Reference Guide Troy University OU Campus Version 10 End-User Reference Guide Troy University OU Campus Version 10 omniupdate.com Table of Contents Table of Contents... 2 Introduction... 3 Logging In... 4 Navigating in OU Campus... 6 Dashboard... 6 Content...

More information

Building an Application to Dynamically Execute Partner Process Flows

Building an Application to Dynamically Execute Partner Process Flows Building an Application to Dynamically Execute Partner Process Flows This topic describes how to configure an application using iway Integration Tools (iit) that will dynamically execute partner process

More information

ADF Mobile Code Corner

ADF Mobile Code Corner ADF Mobile Code Corner m03. Abstract: Dependent lists is a common functional requirement for web, desktop and also mobile applications. You can build dependent lists from dependent, nested, and from independent,

More information

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES

INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES INTRODUCTION TO THE MATLAB APPLICATION DESIGNER EXERCISES Eric Peasley, Department of Engineering Science, University of Oxford version 4.6, 2018 MATLAB Application Exercises In these exercises you will

More information

General Guidelines: SAS Analyst

General Guidelines: SAS Analyst General Guidelines: SAS Analyst The Analyst application is a data analysis tool in SAS for Windows (version 7 and later) that provides easy access to basic statistical analyses using a point-and-click

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

Writing and Running Programs

Writing and Running Programs Introduction to Python Writing and Running Programs Working with Lab Files These instructions take you through the steps of writing and running your first program, as well as using the lab files in our

More information

Part 1 The first steps

Part 1 The first steps course DELPHI FOR ELECTRONIC ENGINEERS Part 1 The first steps Detlef Overbeek & Anton Vogelaar This article is the first part in a series about programming in Delphi, which concentrates on the practical

More information

Application Notes for Deploying a VoiceXML Application Using Avaya Interactive Response and Audium Studio - Issue 1.0

Application Notes for Deploying a VoiceXML Application Using Avaya Interactive Response and Audium Studio - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Deploying a VoiceXML Application Using Avaya Interactive Response and Audium Studio - Issue 1.0 Abstract These Application Notes provide

More information

In the first class, you'll learn how to create a simple single-view app, following a 3-step process:

In the first class, you'll learn how to create a simple single-view app, following a 3-step process: Class 1 In the first class, you'll learn how to create a simple single-view app, following a 3-step process: 1. Design the app's user interface (UI) in Xcode's storyboard. 2. Open the assistant editor,

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

SID Images via Raster Connections

SID Images via Raster Connections Section 8.2 SID Images via Raster Connections Overview - Section 8.2 Denver Water has a standard set of imagery to be used at all times. The following steps can be used to access this imagery through AutoCAD

More information

Baseline dimension objects are available for placement in the PCB Editor only, by clicking Home

Baseline dimension objects are available for placement in the PCB Editor only, by clicking Home Baseline Dimension Modified by Jason Howie on 24-Oct-2014 Parent page: Dimension A placed Baseline Dimension. Summary A baseline dimension is a group design object. It allows for the dimensioning of a

More information

CNS Barcode. Version 1.3. Integrating with FileMaker Go

CNS Barcode. Version 1.3. Integrating with FileMaker Go Version 1.3 Integrating with FileMaker Go Table of Contents Introduction! 3 Setting up CNS Barcode! 4 Creating a FileMaker Go Database! 6 Testing! 16 Conclusion! 19 2 Introduction When FileMaker, Inc.

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

Switch Web Event Handler

Switch Web Event Handler Switch Web Event Handler Contents Introduction... 1 Use SwitchEventHandler actions... 2 Switch handler at runtime (1)... 2 Switch handler at runtime (2)... 7 Remove Event Handler... 12 Test... 14 Feedback...

More information

Windows 2000 Safe Mode

Windows 2000 Safe Mode LAB PROCEDURE 29 Windows 2000 Safe Mode OBJECTIVES 1. Restart and try various startup options. RESOURCES Troubleshooting 1. Marcraft 8000 Trainer with Windows 2000 installed 2. A PS2 mouse 3. A LAN connection

More information

Workshare Client Extranet. Getting Started Guide. for Mac

Workshare Client Extranet. Getting Started Guide. for Mac Workshare Client Extranet Getting Started Guide for Mac Build trust with your clients Share files with your clients and partners in professional, branded workspaces that you control. Create your look Work

More information

Prerequisites for Eclipse

Prerequisites for Eclipse Prerequisites for Eclipse 1 To use Eclipse you must have an installed version of the Java Runtime Environment (JRE). The latest version is available from java.com/en/download/manual.jsp Since Eclipse includes

More information

Hello, welcome to this brief tutorial on accessing and playing Adobe Presenter video files.

Hello, welcome to this brief tutorial on accessing and playing Adobe Presenter video files. Hello, welcome to this brief tutorial on accessing and playing Adobe Presenter video files. Recorded video presentations for this course were produced using Adobe Presenter. After viewing this brief tutorial,

More information

Colligo Manager. White Labeling

Colligo  Manager. White Labeling White Labeling Contents White Labeling... 2 Registry Path and License Key... 2 Enabling Branding... 2 Disabling Branding... 2 Using the MSI... 3 Using Registry Settings... 4 Branding Properties & Locations...

More information

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide

Telerik Corp. Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Test Studio Standalone & Visual Studio Plug-In Quick-Start Guide Contents Create your First Test... 3 Standalone Web Test... 3 Standalone WPF Test... 6 Standalone Silverlight Test... 8 Visual Studio Plug-In

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Using Altium Documentation Modified on Nov 15, 2016 Overview This interface is the immediate ancestor

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

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

1 Setting Up Your Auto Login Link in Windows

1 Setting Up Your Auto Login Link in Windows This User Guide is relevant for Admins, Teachers and s Admin Teacher Student Auto Login - An Overview Auto Login allows you to create a shortcut that logs you directly into your EducationCity school account.

More information

Multi-line PCB Text Support

Multi-line PCB Text Support Multi-line PCB Text Support Old Content - visit altium.com/documentation Modified by on 29-Nov-2016 In this latest release of Altium Designer, the PCB Editor s String object now supports text that can

More information

Setting up a BioNumerics database with levels

Setting up a BioNumerics database with levels BioNumerics Tutorial: Setting up a BioNumerics database with levels 1 Aims The database levels in BioNumerics form a powerful concept that allows users to structure information in a hierarchical way. Each

More information

Use Web Event Bubbling

Use Web Event Bubbling Use Web Event Bubbling Contents Introduction... 1 Use event bubbling... 1 Test event bubbling... 9 Feedbacks... 11 Introduction Every element in a web page has a parent element. For example, a button s

More information