Macros and User Forms

Size: px
Start display at page:

Download "Macros and User Forms"

Transcription

1 Macros and User Forms INTRODUCTION Toad Data Modeler supports macros. You can create a macro in Package Explorer or Script Explorer and modify its properties to display the macro either in main menu or pop-up menu (of particular object or on the Workspace etc.). Older Toad Data Modeler versions allowed you to define such macros via a script written in Script Editor. To execute the script directly, you simply selected the macro in the particular menu. Current BETA version is bringing some improvements for using macros - visual components for macros (User Forms). So, now when you select a macro, a user form can display. Examples of User Forms: Right-click the Workspace displays the Macros item. Two user macros are available there: Copyright: 2009 Quest Software, Inc. 1/12

2 Mark Procedures as Generate macro opens the following user form: Select the procedures for which you want to clear the Generate box. Click Close to execute the macro. Add Prefix macro opens the following user form: Define a prefix for attributes. Click Execute to execute the macro. These have just been examples of user forms that you can create on your own. User Forms - Brief Information: You can create and use user forms to interact with Toad Data Modeler during script and macro execution. You can enter input parameters or see some output information. Function Main only creates and displays the user form. Other functionalities must be implemented/added via form events or its controls. So, a form is not a dialog. Copyright: 2009 Quest Software, Inc. 2/12

3 MACRO Create Macro Use Case: You want to create a macro that will add a particular prefix to all attributes in your model. Solution: You will create a macro Add Prefix. The macro will be available via right-click menu on the Workspace. You want to create a user form where you will define the prefix and decide if you want to apply the change in Caption of attributes too. 1. Open Script Explorer. 2. Right-click the Macros item and select Add New Macro. 3. Right-click the new item and select Properties. 4. On tab General, define properties of the macro. Copyright: 2009 Quest Software, Inc. 3/12

4 Important! Name of macro mustn t contain spaces and other forbidden characters. The name must start with a character (not number). Then you can use characters, numbers or possibly _. The rules don t refer to caption. Caption can be any title you want. 5. On tab Visibility, select where you want to apply the macro Physical Model. 6. On tab Menu, define whether you want to display the macro in: - Macro menu, - pop-up menu, - both places. Parameter Path specifies position in main menu or pop-up menu. Feel free to define e.g. Test\My Items. In this example, you decide to display it only in pop-up menu. Path box is empty as Macros item is set as default. Copyright: 2009 Quest Software, Inc. 4/12

5 7. On tab Object Types, select in which object pop-up menu you want to display it. Select Workspace. 8. Confirm OK. Copyright: 2009 Quest Software, Inc. 5/12

6 9. Double-click the macro to open Script Editor. Modify the default code. function Main() var App = System.GetInterface("Application"); var Model = App.ActiveModel; var WS = App.ActiveWorkSpace; var Log = System.CreateObject("Log"); var form, lb, ed, chb; //Create form form = System.CreateForm('Form','Add Prefix to Attributes',200, 170); //Add script that should be executed after you click the Execute button form.executescriptname = 'AddPrefix'; form.executemethodname = 'Execute'; form.closeafterexecute = true; //Add component Label on the form lb = form.addcontrol('label', 5); lb.caption = 'Prefix:'; //Add component Edit on the form ed = form.addcontrol('edprefix', 1); ed.width = 160; //Add component Checkbox on the form chb = form.addcontrol('chbonlyname', 2); chb.caption = 'Modify Caption'; chb.checked = true; Copyright: 2009 Quest Software, Inc. 6/12

7 //Macro can be executed for Attributes, Model or Workspace //If macro is executed only for attributes, it relates only to selected attributes. var OnlyAttributes = true; var i, SelectObject; for(i=0; i<this.count;i++) SelectObject = This.GetObject(i); if (SelectObject.ObjectType!=2003) //2003 = Attribute OnlyAttributes = false; //Variable will be accessible also in event via calling Instance.VariableName (Instance.OnlyAttributes) form.adduservariable('onlyattributes',onlyattributes); //Registered objects will be accessible in events. form.registerobject(this, 'SelectedObjects'); form.registerobject(model,'model'); form.registerobject(log,'log'); form.showmodal(); function RenameAttribute(Attribute) Log.Information('Attribute has been renamed from "'+Attribute.Name+'" to "'+EdPrefix.Text+Attribute.Name+'"'); if (ChbOnlyName.Checked) Attribute.Caption = EdPrefix.Text+Attribute.Caption; else Attribute.Name = EdPrefix.Text+Attribute.Name; function Execute() var i, j, SelectObject, Ent; if (Instance.OnlyAttributes) for(i=0; i<selectedobjects.count;i++) SelectObject = SelectedObjects.GetObject(i); RenameAttribute(SelectObject); Copyright: 2009 Quest Software, Inc. 7/12

8 else for(i=0; i<model.entities.count; i++) Ent = Model.Entities.GetObject(i); for(j=0; j<ent.attributes.count; j++) SelectObject = Ent.Attributes.GetObject(j); RenameAttribute(SelectObject); Model.RefreshModel(); 10. Click Commit and Save. Result: Right-click the Workspace Macros Add Prefix to open the user form. Copyright: 2009 Quest Software, Inc. 8/12

9 FORM Create a Form To create a form, use the object System that is registered in every script. The method you need is called CreateForm and has four optional parameters: Example: var form = System.CreateForm( FormName, Form Caption, 200, 150); 1. First Parameter Name of form (it mustn t contain spaces and other invalid/not permitted characters). 2. Second Parameter Caption that will be displayed in the heading of the form. 3. Third Parameter Width of the form. 4. Fourth Parameter Height of the form. Functions of Form AddControl(ControlName: widestring, ControlType: Integer): IDispatch; - ControlName Name under which the control is accessible. - ControlType Number of control type that should be created. See the following table: Edit Box Check Box Memo Panel Label Group Box Radio Button Combo Box List Box Button This function adds control on the form. ShowModal() This function displays the form. Copyright: 2009 Quest Software, Inc. 9/12

10 Procedures of Form AddUserVariable(AName: widestring, DefaultValue) - AName Name under which a variable is accessible in events of forms. - DefaultValue Default value. It can be of types integer, widestring or boolean. This procedure adds a variable on the form. The variable is then accessible in events via calling the Instance.VariableName. The variable is accessible across events. If you change a content of the variable in one event, the changed status will be accessible in another event. RegisterObject(AName: widestring, AObject: IDispatch) - AName Name of object via which it will be accessible in events. - Aobject Object that is registered. Use this procedure to register objects in events. Properties of Form Caption Heading of the form. CloseAfterExecute True When you click Execute, the code will be executed and the form closed. False The form will not close after execution. False is set up by default. ExecuteMethodName Name of method that should be executed when you press the Execute button. ExecuteScriptName Name of script for calling out the method when you click the Execute button. Note: If you don t want to use the button Execute, do not set up the properties ExecuteMethodName and ExecuteScriptName. The button will not be visible on the form then. Copyright: 2009 Quest Software, Inc. 10/12

11 EVENTS To assign events, assign the component of particular event to properties of names NameEventScriptName, NameEventMethodName with reference to particular service method. Example: Button.OnClickScriptName = MyScript ; Button.OnClickMethodName = DoOnClick ; CONTROL Control is an ancestor from which all controls, including the form, inherit. Properties of Control Align Alignment of control. Possible values to use: 0 No alignment 1 Alignment - Top 2 Alignment - Bottom 3 Alignment - Left 4 Alignment - Right 5 Alignment Justify AnchorTop, AnchorBottom, AnchorLeft, AnchorRight Determines the position of control. Default place top left-hand corner. Parent Control on which a control is placed. Default position of all controls is on the form and this property is not set up. Note: Description of value Align 0..5: alnone - The control remains where it was placed. This is the default value. altop - The control moves to the top of its parent and resizes to fill the width of its parent. The height of the control is not affected. albottom - The control moves to the bottom of its parent and resizes to fill the width of its parent. The height of the control is not affected. alleft - The control moves to the left side of its parent and resizes to fill the height of its parent. The width of the control is not affected. alright - The control moves to the right side of its parent and resizes to fill the height of its parent. The width of the control is not affected. alclient - The control resizes to fill the client area of its parent. If another control already occupies part of the client area, the control resizes to fit within the remaining client area. Copyright: 2009 Quest Software, Inc. 11/12

12 BUTTON Event OnClick Occurs when you click the button. CHECKBOX Event OnClick Occurs when the check in checkbox is changed. COMBO-BOX Event OnSelect - Occurs when combo box is selected. EDIT Event OnChangeText Occurs when text in edit box is changed. MEMO Event OnChangeText Occurs when text in memo is changed. RADIO BUTTON Event OnClick Occurs when the button is selected. For more properties, please read the Reference Guide (Help menu Reference, Expert mode must be selected). See objects: UserButton, IUserCheckBox, IUserComboBox, UserControl, UserEdit, UserFormBasic, UserForm, UserGroupBox, IUserLabel, UserListBox, UserMemo, IUserPanel, UserRadioButton, UserStrings. Note: Reference Guide is not being updated for Beta versions. The document will be updated for next commercial release of Toad Data Modeler. Thank you. Copyright: 2009 Quest Software, Inc. 12/12

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 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

Getting Started Manual. SmartList To Go

Getting Started Manual. SmartList To Go Getting Started Manual SmartList To Go Table of contents Installing SmartList To Go 3 Launching SmartList To Go on the handheld 4 SmartList To Go toolbar 4 Creating a SmartList 5 The Field Editor Screen

More information

VISUAL BASIC 2 EDITOR

VISUAL BASIC 2 EDITOR VISUAL BASI 2 EDITOR hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: How to edit code in the. How to create, open, and access project(s). How to edit scripts and use the code

More information

SCHOOL COLLABORATION SITES Reference Guide

SCHOOL COLLABORATION SITES Reference Guide SCHOOL COLLABORATION SITES Reference Guide Information Technology Services SCHOOL COLLABORATION SITES Reference Guide Information Technology Services 13135 SW 26 ST Miami, FL 33176 Phone 305.995.3770 Fax

More information

PCB Design View. Contents

PCB Design View. Contents PCB Design View Contents Placing a Design View Defining the View Area Setting the Location and Scale of the Design View Defining the Title Interactively adjusting the Scale, Size and Focus of the Design

More information

Page 1 of 6 How To Use Combo Boxes in Customized Forms Hi All, In this article, I will explain how to use DataComboBox, DataStaticDataComboBox and ComboBox components for form customization. If you wish

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Here is a step-by-step guide to creating a custom toolbar with text

Here is a step-by-step guide to creating a custom toolbar with text How to Create a Vertical Toolbar with Text Buttons to Access Your Favorite Folders, Templates and Files 2007-2017 by Barry MacDonnell. All Rights Reserved. Visit http://wptoolbox.com. The following is

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Introduction One of the DbSchema modules is the Forms and Reports designer. The designer allows building of master-details reports as well as small applications for

More information

Creating Fill-able Forms using Acrobat 7.0: Part 1

Creating Fill-able Forms using Acrobat 7.0: Part 1 Creating Fill-able Forms using Acrobat 7.0: Part 1 The first step in creating a fill-able form in Adobe Acrobat is to generate the form with all its formatting in a program such as Microsoft Word. Then

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

Motion Control Products Application note How to display a page to indicate communication error

Motion Control Products Application note How to display a page to indicate communication error Motion Control Products Application note How to display a page to indicate communication error AN00201-002 Java script allows CP600 HMIs to perform a vast array of user-defined functions with ease Introduction

More information

DbSchema Forms and Reports Tutorial

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

More information

Wiki App Guide. Blackboard Web Community Manager

Wiki App Guide. Blackboard Web Community Manager Wiki App Guide Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard,

More information

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

More information

This document describes how to use the CAP workbook with Excel It applies to version 6b of the workbook.

This document describes how to use the CAP workbook with Excel It applies to version 6b of the workbook. Introduction This document describes how to use the CAP workbook with Excel 2007. It applies to version 6b of the workbook. Be sure to use the new version 6b of the CAP workbook when using Excel 2007!

More information

Sample A2J Guided Interview & HotDocs Template Exercise

Sample A2J Guided Interview & HotDocs Template Exercise Sample A2J Guided Interview & HotDocs Template Exercise HotDocs Template We are going to create this template in HotDocs. You can find the Word document to start with here. Figure 1: Form to automate Converting

More information

Forms for Android Version Manual. Revision Date 12/7/2013. HanDBase is a Registered Trademark of DDH Software, Inc.

Forms for Android Version Manual. Revision Date 12/7/2013. HanDBase is a Registered Trademark of DDH Software, Inc. Forms for Android Version 4.6.300 Manual Revision Date 12/7/2013 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned

More information

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

For more detailed information on the differences between DelphiScript and Object Pascal, refer to the DelphiScript Reference document. 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

More information

POS Designer Utility

POS Designer Utility POS Designer Utility POS Designer Utility 01/15/2015 User Reference Manual Copyright 2012-2015 by Celerant Technology Corp. All rights reserved worldwide. This manual, as well as the software described

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

(1) Trump (1) Trump (2) (1) Trump ExampleU ExampleP (2) Caption. TrumpU (2) Caption. (3) Image FormTrump. Top 0 Left 0.

(1) Trump (1) Trump (2) (1) Trump ExampleU ExampleP (2) Caption. TrumpU (2) Caption. (3) Image FormTrump. Top 0 Left 0. B 114 18 (1) 18.1 52 54 Trump http://www.ss.u-tokai.ac.jp/~ooya/jugyou/joronb/trumpbmp.exe (1) (2) Trump 18.2 (1) Trump ExampleU ExampleP (2) Name Caption FormMain 18.3 (1) TrumpU (2) Name Caption FormTrump

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

P3e REPORT WRITER CREATING A BLANK REPORT

P3e REPORT WRITER CREATING A BLANK REPORT P3e REPORT WRITER CREATING A BLANK REPORT 1. On the Reports window, select a report, then click Copy. 2. Click Paste. 3. Click Modify. 4. Click the New Report icon. The report will look like the following

More information

MyNIC Team Site - Document Sharing

MyNIC Team Site - Document Sharing Table of Contents Create a Document...2 Upload a Document...3 Rename Document...4 Edit a Document...6 Check-out a Document...6 Edit a Document...7 Check-in a Document...9 Check-in Someone Else s Document...

More information

MOBILOUS INC, All rights reserved

MOBILOUS INC, All rights reserved 8-step process to build an app IDEA SKETCH CONCEPTUALISE ORGANISE BUILD TEST RELEASE SUBMIT 2 I want to create a Mobile App of my company which only shows my company information and the information of

More information

Nikon Capture NX "How To..." Series

Nikon Capture NX How To... Series 1 of 8 5/14/2007 2:55 PM Nikon Capture NX "How To..." Series Article 1 - How to convert multiple RAW (NEF) images into JPEG format, for use on a web page. Procedure: Step 1 - Resize an image. Step 2 -

More information

Contents. Properties: Field Area Fields Add a Table to a Form... 23

Contents. Properties: Field Area Fields Add a Table to a Form... 23 Workflow Design Guide Version 18 February 2018 Contents About This Guide... 7 Workflows and Forms Overview... 7 Security Permissions for Workflows and Forms... 8 Search for a Workflow Design, Workflow

More information

CS-Studio Display Builder

CS-Studio Display Builder CS-Studio Display Builder Tutorial presented: Spring 2017 EPICS Collaboration Meeting at KURRI, Osaka, Japan Megan Grodowitz, Kay Kasemir (kasemir@ornl.gov) Overview Display Builder replaces OPI Builder

More information

Navigating a Database Efficiently

Navigating a Database Efficiently Navigating a Database Efficiently 1 Navigating a Database Efficiently THE BOTTOM LINE Often, the people who use a database are not the same people who create a database, and thus they may have difficulty

More information

Customizing FrontPage

Customizing FrontPage In this Appendix Changing the default Web page size Customizing FrontPage toolbars Customizing menus Configuring general options B Customizing FrontPage Throughout the chapters comprising this book, you

More information

Layout Assistant Help

Layout Assistant Help Layout Assistant Help The intent of this tool is to allow one to group controls on a form and move groups out of the way during the design phase, and then easily return them to their original positions

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

AN-POV-003 Using the radio button and check-box objects

AN-POV-003 Using the radio button and check-box objects Category Software Equipment Software Demo Application Implementation Specifications or Requirements Item POV Version: 7.1 and later Service Pack: Windows Version: Windows XP SP3, Vista SP2, Win 7 SP1,

More information

TIDY LABELS. User Guide

TIDY LABELS. User Guide TIDY LABELS User Guide TIDY LABELS User Guide Contents 1. Overview...3 2. Installation...3 3. Navigating through the application...3 4. Databases...4 4.1 Creating a new database manually...5 4.2 Importing

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

QRG: Adding Images, Files and Links in the WYSIWYG Editor

QRG: Adding Images, Files and Links in the WYSIWYG Editor QRG: Adding Images, Files and Links in the WYSIWYG Editor QRG: Adding Images, Files and Links in the WYSIWYG Editor... 1 Image Optimisation for Web use:... 2 Add an Image... 2 Linking to a File... 4 Adding

More information

AlphaCam Routing Example

AlphaCam Routing Example The Project In this project we are going to draw a door front with an arched panel from information supplied by the user and then machine the door complete. The project will contain a single form and two

More information

Adding Disclaimer Text Field to your Salesforce Org

Adding Disclaimer Text Field to your Salesforce Org Adding Disclaimer Text Field to your Salesforce Org Table of Contents 1 Introduction... 3 2 Add Disclaimer Text Field to goalgamipro Settings, Plan, and Report Page Layouts... 3 3 Make Sure Disclaimer

More information

13 FORMATTING WORKSHEETS

13 FORMATTING WORKSHEETS 13 FORMATTING WORKSHEETS 13.1 INTRODUCTION Excel has a number of formatting options to give your worksheets a polished look. You can change the size, colour and angle of fonts, add colour to the borders

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

The standard InTouch keyboard or keypad. This is the default keyboard.

The standard InTouch keyboard or keypad. This is the default keyboard. NOTE: This article and all content are provided on an "as is" basis without any warranties of any kind, whether express or implied, including, but not limited to the implied warranties of merchantability,

More information

TTWeb Quick Start Guide

TTWeb Quick Start Guide Web to Host Connectivity TTWeb Quick Start Guide TTWeb is Turbosoft s web to host terminal emulation solution, providing unprecedented control over the deployment of host connectivity software combined

More information

Board Options. Modified by Phil Loughhead on 27-Jan Parent page: PCB Dialogs. Old Content - visit altium.com/documentation

Board Options. Modified by Phil Loughhead on 27-Jan Parent page: PCB Dialogs. Old Content - visit altium.com/documentation Board Options Old Content - visit altium.com/documentation Modified by Phil Loughhead on 27-Jan-2016 Parent page: PCB Dialogs The Board Options Dialog. Summary Board Options dialog allows the designer

More information

Working with Confluence Pages

Working with Confluence Pages Working with Confluence Pages Contents Creating Content... 3 Creating a Page... 3 The Add Page Link... 3 Clicking on an Undefined Link... 4 Putting Content on the Page... 4 Wiki Markup... 4 Rich Text Editor...

More information

Inserting or deleting a worksheet

Inserting or deleting a worksheet Inserting or deleting a worksheet To insert a new worksheet at the end of the existing worksheets, just click the Insert Worksheet tab at the bottom of the screen. To insert a new worksheet before an existing

More information

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO

INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND INSTALLATION GUIDE FOR ECLIPSE 3.3 TO INTRODUCTION... 3 INSTALLATION GUIDE FOR ECLIPSE 3.1 AND 3.2... 4 INSTALLATION GUIDE FOR ECLIPSE 3.3 TO 4.3... 23 INSTALLATION GUIDE FOR ECLIPSE 4.4 OR HIGHER... 37 ECLIPSE VIEWERS... 41 DEVICES... 41

More information

User s Manual for ArpEdit

User s Manual for ArpEdit User s Manual for ArpEdit Introduction into User s Manual for ArpEdit............................................................. 3 General principles of operating ArpEdit................................................................

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

Toufee Banner Rotator User Guide

Toufee Banner Rotator User Guide Toufee Banner Rotator User Guide Toufee Banner Rotator User Guide Page 1 Table of Contents Launching Banner Rotator 3 Adding Images 3 Customizing the Banner Rotator 5 Publishing the Video Publishing on

More information

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22

Contents. Add a Form Element to a Group Box Add a Field to a Form... 22 Workflow Design Guide Version 17 November 2017 Contents About This Guide... 7 Workflows and Forms Overview... 7 Security Permissions for Workflows and Forms... 8 Search for a Workflow Design, Workflow

More information

Grapher 10 Ribbon Bar

Grapher 10 Ribbon Bar Grapher 10 Ribbon Bar When Grapher 10 was released, it included many changes to the user interface. Once such change was the new Ribbon Bar. The Ribbon Bar is designed to better emulate the menu bars in

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

Report Composer Version 6.0. What's New

Report Composer Version 6.0. What's New Report Composer Version 6.0 What's New Contents INTRODUCTION TO VERSION 6.0...3 INTRODUCTION...3 USER MANUAL...3 CUSTOMER COMMUNICATIONS & SUPPORT...4 TERMINOLOGY CHANGES...4 CONVERSION FROM PREVIOUS VERSIONS...5

More information

Viewer. Quick Reference Guide

Viewer. Quick Reference Guide Viewer Quick Reference Guide igrafx 2009 Viewer Quick Reference Guide Table of Contents igrafx Viewer Quick Reference Guide........................................................3 igrafx Viewer Interface..................................................

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

MockupScreens - User Guide

MockupScreens - User Guide MockupScreens - User Guide Contents 1. Overview...4 2. Getting Started...5 Installing the software... 5 Registering... 9 3. Understanding the Interface...11 Menu Bar... 11 Tool bar... 14 Elements... 14

More information

Customizing Wizards with Cisco Prime Network Activation Wizard Builder

Customizing Wizards with Cisco Prime Network Activation Wizard Builder CHAPTER 3 Customizing Wizards with Cisco Prime Network Activation Wizard Builder The following topics provide detailed information about customizing Network Activation wizard metadata files using the Cisco

More information

Workshop BOND UNIVERSITY Bachelor of Interactive Multimedia and Design Beginner Game Dev Character Control Building a character animation controller.

Workshop BOND UNIVERSITY Bachelor of Interactive Multimedia and Design Beginner Game Dev Character Control Building a character animation controller. Workshop BOND UNIVERSITY Bachelor of Interactive Multimedia and Design Beginner Game Dev Character Control Building a character animation controller. FACULTY OF SOCIETY AND DESIGN Building a character

More information

Developer s Tip Print to Scale Feature in Slide

Developer s Tip Print to Scale Feature in Slide Developer s Tip Print to Scale Feature in Slide The latest update to Slide 5.0 brings a number of improvements related to printing functionality, giving the user greater control over printed output. Users

More information

Editing the Home Page

Editing the Home Page Editing the Home Page Logging on to Your Web site 1. Go to https://extension.usu.edu/admin/ 2. Enter your Login and Password. 3. Click Submit. If you do not have a login and password you can request one

More information

TECH-NOTE. The Keyboard Macro Editor. The Keyboard Macro Editor Dialog Box

TECH-NOTE. The Keyboard Macro Editor. The Keyboard Macro Editor Dialog Box The Keyboard Macro Editor The Keyboard Macro Editor is a feature in the Designer TM for Windows TM software package that allows the user to associate specific functions with keys or touchcells on a UniOP

More information

Configuring Ad hoc Reporting. Version: 16.0

Configuring Ad hoc Reporting. Version: 16.0 Configuring Ad hoc Reporting Version: 16.0 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived

More information

OIG 11G R2 Field Enablement Training

OIG 11G R2 Field Enablement Training OIG 11G R2 Field Enablement Training Lab 9- UI Customization Simple Disclaimer: The Virtual Machine Image and other software are provided for use only during the workshop. Please note that you are responsible

More information

Arch Guide Creating an Instructional Plan

Arch Guide Creating an Instructional Plan Community Members Comprehend Standards Concepts Classes Planbooks Strategies Assessments Portfolios Forms Arch Guide Creating an Instructional Plan 8 9 0 8 9 0 Create a New Plan Enter Plan Basics Align

More information

How to use the ruler, grid, guides, and the Align panel

How to use the ruler, grid, guides, and the Align panel How to use the ruler, grid, guides, and the Align panel Much of your job as a page designer is to place text and graphics on the page in a pleasing, organized way. Although you can do much of this placing

More information

ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS

ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS There are different options that may be used to adjust columns and rows in a table. These will be described in this document. ADJUST COLUMN WIDTHS Select

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Working with Query Objects Intellicus Enterprise Reporting and BI Platform ` Intellicus Technologies info@intellicus.com www.intellicus.com Working with Query Objects i Copyright 2012 Intellicus Technologies

More information

This example shows how you can input a Sales Order ID and bring back the Country and Net Amount for that ID to the first screen of the transaction.

This example shows how you can input a Sales Order ID and bring back the Country and Net Amount for that ID to the first screen of the transaction. 1.1. Copy and Paste 1.1.1. Sap Screen This example shows how you can input a Sales Order ID and bring back the Country and Net Amount for that ID to the first screen of the transaction. (1) The Transaction

More information

The Newsletter will contain a Title for the newsletter, a regular border, columns, Page numbers, Header and Footer and two images.

The Newsletter will contain a Title for the newsletter, a regular border, columns, Page numbers, Header and Footer and two images. Creating the Newsletter Overview: You will be creating a cover page and a newsletter. The Cover page will include Your Name, Your Teacher's Name, the Title of the Newsletter, the Date, Period Number, an

More information

User Guide. Chapter 6. Teacher Pages

User Guide. Chapter 6. Teacher Pages User Guide Chapter 6 s Table of Contents Introduction... 5 Tips for s... 6 Pitfalls... 7 Key Information... 8 I. How to add a... 8 II. How to Edit... 10 SharpSchool s WYSIWYG Editor... 11 Publish a...

More information

Connecting a GPS Rover to a Modem or Base Network

Connecting a GPS Rover to a Modem or Base Network Connecting a GPS Rover to a Modem or Base Network There are several types of modems and methods for connecting to a network available. The RTK tab in the GPS Rover dialog configures the modems and network

More information

Index. Smart Image Processor 2 Manual DMXzone.com

Index. Smart Image Processor 2 Manual DMXzone.com Index Index... 1 About Smart Image Processor 2... 2 Features in Detail... 2 Before you begin... 6 Installing the extension... 7 Updating from previous versions... 7 Introduction... 7 How to do it... 7

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 - Layer Stack Regions A New Era for Documentation Modified by Annika Krilov on Apr 11, 2017 Parent

More information

InDesign CC 2014 Intermediate Skills

InDesign CC 2014 Intermediate Skills InDesign CC 2014 Intermediate Skills Adobe InDesign Creative Cloud 2014 University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2016 KSU Division

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

Drill Table. Summary. Availability. Modified by on 19-Nov Parent page: Objects

Drill Table. Summary. Availability. Modified by on 19-Nov Parent page: Objects Drill Table Old Content - visit altium.com/documentation Modified by on 19-Nov-2013 Parent page: Objects The Drill Table presents a live summary of all drill holes present in the board. Summary A standard

More information

Create engaging demonstrations, simulations and evaluations with Adobe Captivate. Creating from a PowerPoint. Importing a presentation

Create engaging demonstrations, simulations and evaluations with Adobe Captivate. Creating from a PowerPoint. Importing a presentation Creating from a PowerPoint Create engaging demonstrations, simulations and evaluations with Adobe Captivate Preparation Set screen resolution to 1024 X 768 Launch Internet Explorer Turn off browser pop-up

More information

FACT-BVH Tutorial. Part I: Setting up the model. In Life Forms. In ElectricImage. 6. Open a New Animation. 7. Import the Fact model

FACT-BVH Tutorial. Part I: Setting up the model. In Life Forms. In ElectricImage. 6. Open a New Animation. 7. Import the Fact model Prev Menu Next Back p. 15 FACT-BVH Tutorial The FACT-BVH method allows you to bring custom models from your ElectricImage project into Life Forms for animation. The motion data can then be exported and

More information

Read More: Index Function Excel [Examples, Make Dynamic Range, INDEX MATCH]

Read More: Index Function Excel [Examples, Make Dynamic Range, INDEX MATCH] You can utilize the built-in Excel Worksheet functions such as the VLOOKUP Function, the CHOOSE Function and the PMT Function in your VBA code and applications as well. In fact, most of the Excel worksheet

More information

How to Create Greeting Cards using LibreOffice Draw

How to Create Greeting Cards using LibreOffice Draw by Len Nasman, Bristol Village Ohio Computer Club If you want to create your own greeting cards, but you do not want to spend a lot of money on special software, you are in luck. It turns out that with

More information

Enterprise Architect. User Guide Series. Wireframe Models. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Wireframe Models. Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Wireframe Models Author: Sparx Systems Date: 15/07/2016 Version: 1.0 CREATED WITH Table of Contents Wireframe Models 3 Android Wireframe Toolbox 4 Apple iphone/tablet

More information

Delegating Access & Managing Another Person s Mail/Calendar with Outlook. Information Technology

Delegating Access & Managing Another Person s Mail/Calendar with Outlook. Information Technology Delegating Access & Managing Another Person s Mail/Calendar with Outlook Information Technology 1. Click the File tab 2. Click Account Settings, and then click Delegate Access 3. Click Add 4. Type the

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 5/6/2016) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 Before Starting - Is your software up to date?...

More information

Information Systems Center. FrontPage 2003 Reference Guide for COMM 321 & 421

Information Systems Center. FrontPage 2003 Reference Guide for COMM 321 & 421 Information Systems Center FrontPage 2003 Reference Guide for COMM 321 & 421 September 2008 Table of Contents Portfolio Web Sites & Web Pages... 1 Open Your Portfolio Web Site in FrontPage for Editing...

More information

The Bliss GUI Framework. Installation Guide. Matías Guijarro

The Bliss GUI Framework. Installation Guide. Matías Guijarro The Bliss GUI Framework Installation Guide Author Date Matías Guijarro 08/09/05 Index 1. Installing the Framework... 3 1.1 Deploying the packages... 3 1.2 Testing the installation... 4 2.Setting up the

More information

Wordpress Editor Guide. How to Log in to Wordpress. Depending on the location of the page you want to edit, go to either:

Wordpress Editor Guide. How to Log in to Wordpress. Depending on the location of the page you want to edit, go to either: Wordpress Editor Guide How to Log in to Wordpress Depending on the location of the page you want to edit, go to either: http://www.necc.mass.edu/wp- admin (for the main website) Or http://facstaff.necc.mass.edu/wp-

More information

Library Editor Workspace

Library Editor Workspace Library Editor Workspace Modified by Jason Howie on Oct 1, 2014 Other Related Resources Schematic - Grids (Preferences) Grids (Commands) Parent page: Sch Dialogs The Library Editor Workspace dialog. Summary

More information

Grids (tables) is one type of content available in the web Front end s tabs.

Grids (tables) is one type of content available in the web Front end s tabs. Grids Overview Grids (tables) is one type of content available in the web Front end s tabs. Grids provide the following functionality: Data output and automatically updating the data Providing features

More information

Microsoft Access 2010

Microsoft Access 2010 2013\2014 Microsoft Access 2010 Tamer Farkouh M i c r o s o f t A c c e s s 2 0 1 0 P a g e 1 Definitions Microsoft Access 2010 What is a database? A database is defined as an organized collection of data

More information

Product Interface Design using Axure RP Pro 7.0

Product Interface Design using Axure RP Pro 7.0 ID 3103 Intro to Computing I Prof. Tim Purdy Product Interface Design using Axure RP Pro 7.0 Topics Covered: - Exporting device image from Photoshop to Axure RP. - Widgets: Image, Label, Inline Frame,

More information

Links Menu (Blogroll) Contents: Links Widget

Links Menu (Blogroll) Contents: Links Widget 45 Links Menu (Blogroll) Contents: Links Widget As bloggers we link to our friends, interesting stories, and popular web sites. Links make the Internet what it is. Without them it would be very hard to

More information

Chapter 4: Programming with MATLAB

Chapter 4: Programming with MATLAB Chapter 4: Programming with MATLAB Topics Covered: Programming Overview Relational Operators and Logical Variables Logical Operators and Functions Conditional Statements For Loops While Loops Debugging

More information

Aware IM Version 8.2 Aware IM for Mobile Devices

Aware IM Version 8.2 Aware IM for Mobile Devices Aware IM Version 8.2 Copyright 2002-2018 Awaresoft Pty Ltd CONTENTS Introduction... 3 General Approach... 3 Login... 4 Using Visual Perspectives... 4 Startup Perspective... 4 Application Menu... 5 Using

More information

Collaborate, Compare and Merge Panel. Contents

Collaborate, Compare and Merge Panel. Contents Collaborate, Compare and Merge Panel Contents Panel Access Terminology and Status Messages Actions section Work in Progress Regions Version Control Status Difference Map section Cell Differences See Also

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

User Manual. pdoc Forms Designer. Version 3.7 Last Update: May 25, Copyright 2018 Topaz Systems Inc. All rights reserved.

User Manual. pdoc Forms Designer. Version 3.7 Last Update: May 25, Copyright 2018 Topaz Systems Inc. All rights reserved. User Manual pdoc Forms Designer Version 3.7 Last Update: May 25, 2018 Copyright 2018 Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal.

More information

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward Perch Documentation U of M - Department of Computer Science Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward 1 TABLE OF CONTENTS Introduction to Perch History of Perch ---------------------------------------------

More information

Setting Up Netscape 4.61 to read the IMAP Server

Setting Up Netscape 4.61 to read the IMAP Server Setting Up Netscape 4.61 to read the IMAP Server Section I 1. Open Netscape Communicator 4.61. 2. Click Edit, Preferences. 3. In the left-hand panel, if there is a plus sign (+) next to Mail and Newsgroups,

More information