VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018

Size: px
Start display at page:

Download "VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018"

Transcription

1 VBA Macro for Micro Focus Reflections Face-to-Face Orlando March 2018 Christopher Guertin Pharm D, MBA, BCPS Clinical Analyst, Pharmacy Benefits Management

2 Objectives Define what a Macro is Explain why we would use a Macro in Reflections Change Between Ribbon and Classic(Legacy) Mode Customize Micro Focus Ribbon and Toolbar Be able to Run a Macro Learn how to Name a Macro Import and Export a Macro 1

3 What is a Macro Macro (noun) Webster Dictionary a single computer instruction that stands for a sequence of operations Sometimes referred to as: Macroinstruction 2

4 Why use a Macro Saves Times Consistent Data Easy to make both minor and major changes Exportable / Importable Multiple + Easier to use interfaces Allows for User Input Software Already Available 3

5 Examples of User Input Wait for Input into Reflections Message Box to Help Input Box User Form 4

6 What a Macro Can Do Automating almost anything Mouse, Keyboard, Options on Menu Creating Dialog Boxes or User Forms Passing Data Between Applications Error Checking and Handling Interact with Forms to make nice interface 5

7 Benefits of Macros for Reflections Examples: Change Screen Fonts, Color, Size Assign Functions to Keys Allow User Input for FileMan Reports Allow FileMan Reports to be Dynamic Clean up Dirty Data Complete Repetitive Tasks Works well with FileMan No Programmer Access Required 6

8 Security DO NOT put your username or password into a macro to use as an AutoLogin Code Entered is generally not considered Encrypted 7

9 Change Between Ribbon and Classic( Legacy ) Mode 8

10 Sample Reflections Screen Classic ( Legacy ) Mode Ribbon Mode 9

11 Classic to Ribbon Mode Example 1 Setup View Settings Click Left Most >> Reflection Workspace Settings Configure User Interface User Interface Mode: Ribbon Click Ok 10

12 Classic to Ribbon Mode Example 2 Setup View Settings Type Ribbon in Search Box Double Click Setting >> Reflection Workspace Settings >> Workspace Settings >> Configure User Interface >> User Interface Mode Ribbon User Interface Mode: Ribbon Click Ok 11

13 Ribbon Mode to Classic Example 1 File Settings Reflection Workspace Settings Configure User Interface User Interface Mode: Classic Click Ok 12

14 Ribbon to Classic Mode Example 2 File Settings Type Classic in Search Box Double Click Setting >> Reflection Workspace Settings >> Workspace Settings >> Configure User Interface >> User Interface Mode Classic User Interface Mode: Classic Click Ok 13

15 Changing between Ribbon and Classic Mode To Change Modes you must close Micro Focus and open it again for it to take effect This setting is not session specific 14

16 Customize Ribbon Mode Adding Button 15

17 Ribbon Mode Adding Button 1 of 4 Right Click Ribbon Customize the Ribbon 16

18 Ribbon Mode Adding Button 2 of 4 Button Select Action Action Category: Macro 17

19 Ribbon Mode Adding Button 3 of 4 Show Run Macro Dialog Click Ok Click Ok 18

20 Ribbon Mode Adding Button 4 of 4 Click Newly Created Button 19

21 Customize Classic Mode Add Menu Item 20

22 Classic Mode Adding Menu 1 of 4 Setup Menu Menu Item 21

23 Classic Mode Adding Menu 2 of 4 Click New Menu Item Select Action Action Category: Macro 22

24 Classic Mode Adding Menu 3 of 4 Show Run Macro Dialog Click Ok Click Ok 23

25 Classic Mode Adding Menu 4 of 4 Click Newly Created Menu Item 24

26 Run Macro Dialog Select type of macro

27 Macro Dialog Reflections Workspace Macro Select type of macro

28 Macro Dialog Legacy Reflection Macro in This File Select type of macro

29 Macro Dialog Legacy Reflection Macro in Another File Select type of macro

30 Macro Dialog Legacy RB Macro Select type of macro

31 Run Macro Dialog - Reflections Workspace Macro Ribbon and Classic 30

32 Ribbon and Classic Run Macro Ribbon Tools Run Macro Classic Run Macro 31

33 Run Macro Dialog Select Macro Select macro based on type

34 Macro Dialog Macro Name - ModuleName.MacroName Run Runs Selected Macro Cancel Cancels out of Dialog Step Into Edit Runs Selected Macro [breaks] on First Line Edits Selected Macro Create Type name in Macro Name Opens up Macro to change code Delete Deletes Selected Macro 33

35 Naming a Macro 34

36 Naming a Macro Must start with letter May Contain Numbers, Letters May use an Underscore 80 Character Max No Special Characters or Spaces If changing name there is a change for an issues: If you have a form, button or other macro that refers to the OLD name it will not work correctly 35

37 Example of Simple Code and Macro Naming 36

38 Example of Macro Code- Switch Column Size Create Macro Change Column Size 37

39 Legacy Macro Code Sub Column80() On Error GoTo ErrorHandler With Session.DisplayColumns = 132 End With Exit Sub ErrorHandler: Session.MsgBox Err.Description, vbexclamation + vbokonly End Sub 38

40 Macro Code (Reflections Workspace Macro) Sub Column80() On Error GoTo ErrorHandler ' Error Handle Dim intwait As Integer Dim oscurrentscreen As Screen Dim oscurrentterminal As Terminal Set oscurrentterminal = ThisFrame.SelectedView.control Set oscurrentscreen = oscurrentterminal.screen With oscurrentscreen.displaycolumns = 80 Exit Sub End With ErrorHandler: ' Error Handler intwait = MsgBox(Err.description, vbexclamation + vbokonly) ' On Error - Displays Error Description, Exclamation Mark, and OK Button End Sub 39

41 Import Macro from text file Ribbon/Classic 40

42 Ribbon -Import Macro from text file Tools Visual Basic Editor (Alt+F11) Select type of macro Project Project Legacy 41

43 Classic - Import Macro from text file Macro Visual Basic Editor (Alt+F11) Select type of macro Project Project Legacy 42

44 Ribbon and Classic Import Macro from text file 1 of 8 Select Text File Sub Column80() On Error GoTo ErrorHandler ' Error Handle Dim inttest As Integer Dim oscurrentscreen As Screen Dim oscurrentterminal As Terminal Set oscurrentterminal = ThisFrame.SelectedView.control Set oscurrentscreen = oscurrentterminal.screen With oscurrentscreen.displaycolumns = 80 Exit Sub End With ErrorHandler: ' Error Handler intwait = MsgBox(Err.description, vbexclamation + vbokonly) ' On Error - Displays Error Description, Exclamation Mark, and OK Button End Sub 43

45 Ribbon and Classic Import Macro from text file 2 of 8 Select From Sub XXX () to End Sub Sub Column80() On Error GoTo ErrorHandler With Session.DisplayColumns = 80 Exit Sub ErrorHandler:.MsgBox Err.Description, vbexclamation + vbokonly End With End Sub 44

46 Ribbon and Classic Import Macro from text file 3 of 8 Copy Text 45

47 Ribbon and Classic Import Macro from text file 4 of 8 Paste in Module Project Project Legacy 46

48 Ribbon and Classic Import Macro from text file 5 of 8 It may be pasted at the very bottom after the last End Sub 47

49 Ribbon and Classic Import Macro from text file 6 of 8 Pasted Macro now available to use 48

50 Ribbon and Classic Import Macro from text file 7 of 8 Benefits Can Copy/Paste Multiple Macros at once Easy to backup code Possible Issue Paste the copied text Issue Some programs(word, Outlook, Etc ) may change special characters so make sure look it over before using it 49

51 Ribbon and Classic Import Macro from text file 8 of 8 Example using multiple Macros in a single text file 50

52 Export Macro as Text File 51

53 Ribbon - Export Macro as Text File Tools Visual Basic Editor (Alt+F11) Select type of macro Project Project Legacy 52

54 Classic - Export Macro as Text File Macro Visual Basic Editor (Alt+F11) Select type of macro Project Project Legacy 53

55 Ribbon and Classic Export Macro as Text File 1 of 3 Highlight Macro or Multiple Macros 54

56 Ribbon and Classic Export Macro as Text File 2 of 3 Right Click Copy 55

57 Ribbon and Classic Export Macro as Text File 3 of 3 Open Notepad Paste File Save As 56

58 Saving your Session (to keep your changes and Macros) 57

59 Save Session Select File menu on the main Vista Reflections screen Select Save As submenu to open the Save Settings screen On the Save Settings screen select the desired directory to save the session in (you will not be able to save the session in the default directory) Type the new file name for the session and press Save button (make sure the file extension is.rdox)

60 Bonus MOCHA 2.1 Macros 59

61 MOCHA 2.1 Macro 2 Versions (Based on MS Office) Link to MOCHA 2.1 Macro page: %20Analysis%20Report/Macro%20Folder/ Make sure to DOWNLOAD Tons of Code 60

62 Questions?? 61

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and

VBA Collections A Group of Similar Objects that Share Common Properties, Methods and VBA AND MACROS VBA is a major division of the stand-alone Visual Basic programming language. It is integrated into Microsoft Office applications. It is the macro language of Microsoft Office Suite. Previously

More information

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure.

Included with the system is a high quality speech synthesizer, which is installed automatically during the SymWord setup procedure. Introduction to SymWord SymWord is a simple to use, talking, symbol-word processor. It has the basic functionality of a word processor. SymWord can also be configured to produce speech and/or display text

More information

VPN Client and Cisco Clean Access Agent

VPN Client and Cisco Clean Access Agent VPN Client and Cisco Clean Access Agent VPN Client These instructions will help you install the virtual private network (VPN) client and the clean access agent to get access to LCSC s network. NOTE: Many

More information

Maintenance Coordinator RECURRING TASK INSTRUCTIONS

Maintenance Coordinator RECURRING TASK INSTRUCTIONS Maintenance Coordinator RECURRING TASK INSTRUCTIONS Overview The purpose of this document is to outline the creating and assigning of task work order instructions to both standard and recurring work orders.

More information

A Back-End Link Checker for Your Access Database

A Back-End Link Checker for Your Access Database A Back-End for Your Access Database Published: 30 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Working with Split Databases When

More information

GDS provides the dll for the controllers with a simple interface, therefore development time is rapid.

GDS provides the dll for the controllers with a simple interface, therefore development time is rapid. 148 Helpsheet Software STDDPCv2 and ELDPC Controller Drivers Using the driver in third-party development World Leaders in Computer Controlled Testing Systems for Geotechnical Engineers and Geologists 1.

More information

PowerWorship 4.0 Introduction

PowerWorship 4.0 Introduction PowerWorship 4.0 Introduction PowerWorship enables you to create and maintain a library of worship songs and can be used to create song lyrics presentation slides for Microsoft PowerPoint and Apache OpenOffice.

More information

NEWSCenter. InfoQuest Limited / Updated: 5-Feb-07 NEWSCenter Call Center: Ext. 222

NEWSCenter. InfoQuest Limited / Updated: 5-Feb-07 NEWSCenter Call Center: Ext. 222 1 ก ก NEWSCenter (1) (2) ก ก 1 ก ก 9 ก ก 2 ก 9 ก 2 NEWSCenter Toolbars 10 ก ก 2 ก Query Builder 10 ก ก 3 ก Word List 11 ก 4 ก User Defined Topics 12 ก ก 5 ก Previous / Next Highlight 12 ก ก 6 ก 13 ก ก

More information

You can record macros to automate tedious

You can record macros to automate tedious Introduction to Macros You can record macros to automate tedious and repetitive tasks in Excel without writing programming code directly. Macros are efficiency tools that enable you to perform repetitive

More information

TPEditor User Manual

TPEditor User Manual Table of Contents TPEditor User Manual Chapter 1 TPEditor Operation... 1-1 1-1 Recommended System Requirements... 1-1 1-2 TPEditor Software Installation... 1-1 1-3 Basic Introduction... 1-6 1-4 Skills

More information

Easy Windows Working with Disks, Folders, - and Files

Easy Windows Working with Disks, Folders, - and Files Easy Windows 98-3 - Working with Disks, Folders, - and Files Page 1 of 11 Easy Windows 98-3 - Working with Disks, Folders, - and Files Task 1: Opening Folders Folders contain files, programs, or other

More information

Fixed problem with InfoRecall crashing when Export Merged Documents & Print Merged Documents are chosen when files are closed.

Fixed problem with InfoRecall crashing when Export Merged Documents & Print Merged Documents are chosen when files are closed. WHAT S NEW Build 119 Fixed problem with InfoRecall crashing when Export Merged Documents & Print Merged Documents are chosen when files are closed. Build 118 Swap Source Folder: Disabled Menu and Tool

More information

Microsoft Excel - Macros Explained

Microsoft Excel - Macros Explained Microsoft Excel - Macros Explained Macros Explained Macros or macroinstructions allow you to automate procedures or calculations in Excel. Macros are usually recorded using the Macro recorder and then

More information

AVAYA ONE-X COMMUNICATOR SOFTPHONE (WINDOWS) USER GUIDE

AVAYA ONE-X COMMUNICATOR SOFTPHONE (WINDOWS) USER GUIDE AVAYA ONE-X COMMUNICATOR SOFTPHONE (WINDOWS) USER GUIDE 1 AVAYA ONE-X COMMUNICATOR SOFTPHONE (WINDOWS) INSTRUCTIONS Log In / Log Out 3 Placing a call 4 Adding a Contact 6 Modifying a Contact 7 Mute microphone

More information

2 Working with a Database

2 Working with a Database 2 Working with a Database In this chapter Working with a database: Overview 14 Creating a new database 15 Opening an existing database 19 Editing the setup of a database 21 Saving and deleting a database

More information

[SETUP DELEGATION IN GOOGLE APPS]

[SETUP DELEGATION IN GOOGLE APPS] Google allows for the delegation of email accounts between users. This will allow a user access to another user s inbox and enable the user to send mail as them. The following steps explain how to configure

More information

As you probably know, Microsoft Excel is an

As you probably know, Microsoft Excel is an Introducing Excel Programming As you probably know, Microsoft Excel is an electronic worksheet you can use for a variety of purposes, including the following: maintain lists; perform mathematical, financial,

More information

Installation & Operating Instructions Macro Naming Version 1.0

Installation & Operating Instructions Macro Naming Version 1.0 Malerzów, April 28, 2013 Installation & Operating Instructions Macro Naming Version 1.0 1. Preliminary remarks This document is a simplified installation & operating guide for Macro Naming version 1.0

More information

Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3. Installing Notepad++

Notepad++  The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3. Installing Notepad++ Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and is freely available for the

More information

Macros in Excel: Recording, Running, and Editing

Macros in Excel: Recording, Running, and Editing Macros in Excel: Recording, Running, and Editing This document provides instructions for creating, using, and revising macros in Microsoft Excel. Simple, powerful, and easy to customize, Excel macros can

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

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

More information

Advanced Financial Modeling Macros. EduPristine

Advanced Financial Modeling Macros. EduPristine Advanced Financial Modeling Macros EduPristine www.edupristine.com/ca Agenda Introduction to Macros & Advanced Application Building in Excel Introduction and context Key Concepts in Macros Macros as recorded

More information

Software User's Guide

Software User's Guide Software User's Guide The contents of this guide and the specifications of this product are subject to change without notice. Brother reserves the right to make changes without notice in the specifications

More information

Microsoft Excel 2010 Level 1

Microsoft Excel 2010 Level 1 Microsoft Excel 2010 Level 1 One Day Course Course Description You have basic computer skills such as using a mouse, navigating through windows, and surfing the Internet. You have also used paper-based

More information

Penpower WorldCard Link User Manual

Penpower WorldCard Link User Manual Penpower WorldCard Link User Manual Version: v2.0 Release: March, 2013 Contents Chapter 1 Product Features... 1-1 Chapter 2 Getting Started... 2-1 2.1 Install Software...2-1 2.1.1 System Requirement...2-1

More information

MindView Online - Quick Start Guide

MindView Online - Quick Start Guide MindView Online - Quick Start Guide Overview MindView Online is an online concept mapping program that allows users to organize their thoughts visually to create, share, and export mind maps to Microsoft

More information

Outlook 2010 Setup Guide (POP3 Transmailaccess)

Outlook 2010 Setup Guide (POP3 Transmailaccess) Versions Addressed: Microsoft Office Outlook 2010 Document Updated: 7 /22/2013 Copyright 2012 Smarsh, Inc. All rights reserved. Purpose: This document will assist the end user in configuring Outlook 2010

More information

Windows 8.1 User Guide for ANU Staff

Windows 8.1 User Guide for ANU Staff Windows 8.1 User Guide for ANU Staff This guide has been created to assist with basic tasks and navigating Windows 8.1. Further tips for using Windows 8.1 can be found on the IT Services website, or by

More information

Installing a Custom AutoCAD Toolbar (CUI interface)

Installing a Custom AutoCAD Toolbar (CUI interface) Installing a Custom AutoCAD Toolbar (CUI interface) AxciScape produces AutoCAD script files which must be Run within AutoCAD. You can do this by typing SCRIPT into the command line and then select the

More information

Quick Tips & Tricks. Important You must use SEMICOLONS ( ie; ) to separate address when sending mail to multiple users

Quick Tips & Tricks. Important You must use SEMICOLONS ( ie; ) to separate  address when sending mail to multiple users Quick Tips & Tricks Important You must use SEMICOLONS ( ie; ) to separate email address when sending mail to multiple users Customize Mail View Click, View, and then highlight Current View Click, Customize

More information

Software User's Guide

Software User's Guide Software User's Guide The contents of this guide and the specifications of this product are subject to change without notice. Brother reserves the right to make changes without notice in the specifications

More information

TIPS & TRICKS SERIES

TIPS & TRICKS SERIES TIPS & TRICKS SERIES TIPS & TRICKS OFFICE XP MACROS C o m p i l e d b y MUHAMMAD AJMAL BEIG NAZ TIPS & TRICKS OFFICE XP MACROS P a g e 1 CONTENTS Table of Contents OFFICE XP MACROS 3 ABOUT MACROS 3 MICROSOFT

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

Newforma Contact Directory Quick Reference Guide

Newforma Contact Directory Quick Reference Guide Newforma Contact Directory Quick Reference Guide This topic provides a reference for the Newforma Contact Directory. Purpose The Newforma Contact Directory gives users access to the central list of companies

More information

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

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

More information

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

EHA Add-Ins and Keyboard Shortcuts

EHA Add-Ins and Keyboard Shortcuts EHA Add-Ins and Keyboard Shortcuts Creating Keyboard Shortcuts and Add-Ins (Module 1) TOPICS COVERED: 1) Recording Macros (0:00) 2) Adding the Developer Tab to the Ribbon (1:08) 3) Inserting a Code Module

More information

Microsoft Word Basic Features

Microsoft Word Basic Features Aditya College, Gwalior 1 Microsoft Word Basic Features Lesson 1 familiarized you with the the Microsoft Word window. You are now ready to learn how to create a Word document. To begin, open Microsoft

More information

Module 1 - EHA Shortcut Add-in - 1

Module 1 - EHA Shortcut Add-in - 1 Module 1 - EHA Shortcut Add-in TOPICS COVERED: 1) Recording Macros (0:00) 2) Adding the Developer Tab to the Ribbon (1:08) 3) Inserting a Code Module (3:20) 4) Creating the New Name Dialog Shortcut Subroutine

More information

How to Configure Impersonation for OneDrive for Business Data Sources

How to Configure Impersonation for OneDrive for Business Data Sources How to Configure Impersonation for OneDrive for Business Data Sources Before Getting Started Download and install the SharePoint Online Management Shell from the Microsoft Windows Download Center to a

More information

MONA instructions. 1. Logging in. Version 2 1(5) User guide MONA support. 1. Logging in 2. Using MONA 3. Logging out

MONA instructions. 1. Logging in. Version 2 1(5) User guide MONA support. 1. Logging in 2. Using MONA 3. Logging out Version 2 1(5) MON instructions 1. Logging in 2. Using MON 3. Logging out 1. Logging in To sign into the MON system, you need a username, a PIN code and a password. These can be found on the terms of use

More information

Word 2007 by Dick Evans, January 2012

Word 2007 by Dick Evans, January 2012 Word 2007 by Dick Evans, January 2012 Differences between Word 2007 and the other versions out there: Works pre Windows 7 WordPad pre 2010 and 2010 Word 97-2003 Word 2010 What about the trial version available

More information

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word These instructions assume that you are familiar with using MS Word for ordinary word processing *. If you are not comfortable entering

More information

Create a personal geodatabase

Create a personal geodatabase Create a personal geodatabase To create a personal geodatabase that corresponds to the same release as the ArcGIS for Desktop client you are using, follow these steps: 1. In ArcCatalog, right-click the

More information

AutoCAD 2009 User InterfaceChapter1:

AutoCAD 2009 User InterfaceChapter1: AutoCAD 2009 User InterfaceChapter1: Chapter 1 The AutoCAD 2009 interface has been enhanced to make AutoCAD even easier to use, while making as much screen space available as possible. In this chapter,

More information

PST for Outlook Admin Guide

PST for Outlook Admin Guide PST for Outlook 2013 Admin Guide Document Revision Date: Sept. 25, 2015 PST Admin for Outlook 2013 1 Populating Your Exchange Mailbox/Importing and Exporting.PST Files Use this guide to import data (Emails,

More information

Top Producer 7i Tips & Tricks Volume 1

Top Producer 7i Tips & Tricks Volume 1 Top Producer 7i Tips & Tricks Volume 1 TOP PRODUCER Systems Inc. 1 Table of Contents 1 Using Quick Action Commands...3 1.1 Use the Commands Instead of the Menu s...3 2 Scrolling Within a Long List...5

More information

Microsoft Word: Steps To Success (The Bare Essentials)

Microsoft Word: Steps To Success (The Bare Essentials) Microsoft Word: Steps To Success (The Bare Essentials) Workbook by Joyce Kirst 2005 Microsoft Word: Step to Success (The Bare Essentials) Page Contents 1 Starting Word 2 Save 3 Exit 5 Toolbars, Alignment,

More information

Setting Up Your Drawing Environment

Setting Up Your Drawing Environment Setting Up Your Drawing Environment In This Chapter 3 After you start a drawing, you can change its settings, including drawing units and limits, snap and grid settings, and layer, linetype, and lettering

More information

BASIC NAVIGATION & VIEWS...

BASIC NAVIGATION & VIEWS... Content Overview VISUAL TOUR... 5 NEW FEATURES IN OUTLOOK 2010... 6 BASIC NAVIGATION & VIEWS... 7 SETTING PREFERENCES... 7 Creating an Outlook Shortcut... 7 Choosing a Startup View... 7 CUSTOMIZING INBOX

More information

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9.

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9. Page 1 of 71 This section describes several common tasks that you'll need to know in order to use Creator successfully. Examples include launching Creator and opening, saving and closing Creator documents.

More information

Hands-on Session. Styles Tool. Bullets & Numbering

Hands-on Session. Styles Tool. Bullets & Numbering Styles Tool 1. The Styles tool gives the ability to define a pre-set collection of font styles that make it easy and automatic to use branding throughout a document. 2. The Styles tool is located on the

More information

Administration Tool Server

Administration Tool Server Administration Tool Server Technical Brief Overview AT Server Version 1.9.0 and newer software for Codonics Safe Label System (SLS) includes support for installing the Administration Tool (AT) as a server.

More information

<excelunusual.com> Easy Zoom -Chart axis Scaling Using VBA - by George Lungu. <www.excelunusual.com> 1. Introduction: Chart naming: by George Lungu

<excelunusual.com> Easy Zoom -Chart axis Scaling Using VBA - by George Lungu. <www.excelunusual.com> 1. Introduction: Chart naming: by George Lungu Easy Zoom -Chart axis Scaling Using VBA - by George Lungu Introduction: - In certain models we need to be able to change the scale of the chart axes function of the result of a simulation - An Excel chart

More information

Computer Basics. Logging onto Windows

Computer Basics. Logging onto Windows Computer Basics DRN uses Windows PCs for all of its day-to-day operations. You will need to master the details of this section in order to perform your daily tasks. Fortunately, these basics are very simple

More information

E550W INTRODUCTION EDITING A LABEL LABEL PRINTING USING THE FILE MEMORY USING P-TOUCH SOFTWARE NETWORK RESETTING & MAINTENANCE TROUBLESHOOTING

E550W INTRODUCTION EDITING A LABEL LABEL PRINTING USING THE FILE MEMORY USING P-TOUCH SOFTWARE NETWORK RESETTING & MAINTENANCE TROUBLESHOOTING E0W In order to use your P-touch safely, read the included Quick Setup Guide first. Read this guide before you start using your P-touch. Keep this guide in a handy place for future reference. Please visit

More information

Adding A Signature To A Photograph By Jerry Koons

Adding A Signature To A Photograph By Jerry Koons The addition of a signature can help identify the image owner, which can be desirable for certain uses such as Field Trip shows. This procedure presents a step-by-step method to create a signature and

More information

TTWin 4 Quick Start Guide

TTWin 4 Quick Start Guide Host connectivity for Windows TTWin 4 Quick Start Guide TTWin 4 is the latest evolution of Turbosoft s premier Terminal Emulation package - a fast, accurate, reliable and powerful connectivity tool for

More information

9.4 Authentication Server

9.4 Authentication Server 9 Useful Utilities 9.4 Authentication Server The Authentication Server is a password and account management system for multiple GV-VMS. Through the Authentication Server, the administrator can create the

More information

CESecure Quick Start Guide

CESecure Quick Start Guide CESecure Quick Start Guide Using CESecure Software CESecure software is pre-installed on CMS Products Flash or Hard Drives and does not require installation. The CESecure software moves with the encryption

More information

OUTLOOK ATTACHMENT EXTRACTOR 3

OUTLOOK ATTACHMENT EXTRACTOR 3 OUTLOOK ATTACHMENT EXTRACTOR 3 PROGRAM HELP GILLMEISTER SOFTWARE WWW.GILLMEISTER-SOFTWARE.COM 1 TABLE OF CONTENTS 1 Table of contents... 1 2 Start... 4 3 Main menu... 4 3.1 Menu entries of the group Menu...

More information

Exam Name: MOS: Microsoft Office Word 2010 Expert

Exam Name: MOS: Microsoft Office Word 2010 Expert Vendor: Microsoft Exam Code: 77-887 Exam Name: MOS: Microsoft Office Word 2010 Expert Version: DEMO QUESTION 1 Arrange the steps to add a Style to the Quick Styles gallery in the correct order. Answer:

More information

Content: Step-by-Step instructions to duplicate MS Outlook files to a file. Purpose: To move content from one computer to another.

Content: Step-by-Step instructions to duplicate MS Outlook  files to a file. Purpose: To move  content from one computer to another. Content: Step-by-Step instructions to duplicate MS Outlook e-mail files to a file. Purpose: To move e-mail content from one computer to another. Definitions: Old Computer == the computer you want to copy

More information

Version June 2016

Version June 2016 HOSTING GUIDE Version 3.2.3 June 2016 This guide is sold in conjunction with the VETtrak Hosting Serv ice and is current at the time of purchase. Later v ersions are av ailable for download from www.v

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 Contents Starting Excel... 2 Excel Window Properties... 2 The Ribbon... 3 Tabs... 3 Contextual Tabs... 3 Dialog Box Launchers... 4 Galleries... 5 Minimizing the Ribbon... 5 The

More information

Release Notes Kurzweil 3000 Version 13 March 1, 2012

Release Notes Kurzweil 3000 Version 13 March 1, 2012 Release Notes Kurzweil 3000 Version 13 March 1, 2012 WHAT S NEW? Please note that for March release, changes have been made to the product documentation and Help for some, but not all, of the features

More information

Visual Basic Program Coding STEP 2

Visual Basic Program Coding STEP 2 Visual Basic Program Coding 129 STEP 2 Click the Start Debugging button on the Standard toolbar. The program is compiled and saved, and then is run on the computer. When the program runs, the Hotel Room

More information

CaliberRM 5.1 Integration for Describe Enterprise

CaliberRM 5.1 Integration for Describe Enterprise CaliberRM 5.1 Integration for Describe Enterprise Describe Enterprise integration is now available from within the Borland CaliberRM 5.1 software suite. This document describes how to set up and configure

More information

SOS 2009 User Manual. Student Basics. Alpha Omega Publications

SOS 2009 User Manual. Student Basics. Alpha Omega Publications SOS 2009 User Manual Student Basics Alpha Omega Publications MMVI Alpha Omega Publications, Inc. Switched-On Schoolhouse 2009, Switched-On Schoolhouse. Switched-On, and their logos are registered trademarks

More information

Excel The primary replacement for menus and toolbars in Office Excel 2007 is the Ribbon. Designed for easy browsing, the

Excel The primary replacement for menus and toolbars in Office Excel 2007 is the Ribbon. Designed for easy browsing, the Excel 2007 Office Fluent user interface The primary replacement for menus and toolbars in Office Excel 2007 is the Ribbon. Designed for easy browsing, the Ribbon consists of tabs that are organized around

More information

WinSCP. Author A.Kishore/Sachin

WinSCP. Author A.Kishore/Sachin WinSCP WinSCP is a freeware windows client for the SCP (secure copy protocol), a way to transfer files across the network using the ssh (secure shell) encrypted protocol. It replaces other FTP programs

More information

3. IMPORTANT: When prompted, accept the default Installation directory.

3. IMPORTANT: When prompted, accept the default Installation directory. Installing ProView 4.0.1 on your PC 1. Insert the ProView 4.0.1 CD-ROM into your CD-ROM Drive. The Install Shield Wizard should run automatically. If it does not, click Start then Run. Enter D:\setup.exe

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

User Manual Device Manager

User Manual Device Manager User Manual About this document This document describes the application, that is used for administration of devices. Contents 1.... 1 1.1 Basic Terminology... 1 2. The GUI... 2 2.1 Sort and Filter the

More information

Table of Contents. NSCS01 Procedure Illustrations

Table of Contents. NSCS01 Procedure Illustrations NSCS01 Procedure Illustrations are instructions accompanied by screen prints that show how to perform generic functions (i.e., tasks not limited to a specific operational area such as Membership or Patrons)

More information

144 Vernon St. Worcester, MA ww.jyssolutions.com P: F: DVR Manual

144 Vernon St. Worcester, MA ww.jyssolutions.com P: F: DVR Manual 144 Vernon St. Worcester, MA 01610 support@jyssolutions.com ww.jyssolutions.com P: 508-459-8667 F: 508-459-8785 DVR Manual How to Back up the Video Files? How to view the recording? 2 How to View the old

More information

MS Outlook. How to Increase Your Productivity With

MS Outlook. How to Increase Your Productivity With How to Increase Your Productivity With MS Outlook 2015 National Seminars Training. All rights reserved, including the right to reproduce this material or any part thereof in any manner. HOW TO INCREASE

More information

LIBRE OFFICE CALC What is Calc? Spreadsheets, sheets, and cells spreadsheets Spreadsheets Cells

LIBRE OFFICE CALC What is Calc? Spreadsheets, sheets, and cells spreadsheets Spreadsheets Cells 1 LIBRE OFFICE CALC What is Calc? Calc is the spreadsheet component of LibreOffice. You can enter data (usually numerical) in a spreadsheet and then manipulate this data to produce certain results. Alternatively,

More information

The Quick Access Toolbar can be either just below the Title Bar or, as in this case, just above the ruler.

The Quick Access Toolbar can be either just below the Title Bar or, as in this case, just above the ruler. Table of Contents Ribbon... 3 Customizing the Ribbon and Quick Access Toolbars... 3 File Tab... 5 Print and Print Preview... 7 Working in Protected Mode... 8 Accessibility Checker... 9 Compatibility Changes

More information

Proficy* HMI/SCADA - ifix C ONFIGURING S ECURITY F EATURES

Proficy* HMI/SCADA - ifix C ONFIGURING S ECURITY F EATURES Proficy* HMI/SCADA - ifix C ONFIGURING S ECURITY F EATURES Version 5.5 January 2012 All rights reserved. No part of this publication may be reproduced in any form or by any electronic or mechanical means,

More information

Getting Started Guide. Chapter 3 Using Styles and Templates

Getting Started Guide. Chapter 3 Using Styles and Templates Getting Started Guide Chapter 3 Using Styles and Templates Copyright This document is Copyright 2005 2009 by its contributors as listed in the section titled Authors. You may distribute it and/or modify

More information

Basic Millennium INTRODUCTION

Basic Millennium INTRODUCTION Basic Millennium INTRODUCTION Welcome to the Basic Millennium tutorial. Navigation tools, such as the Continue button, will display as you progress through the presentation, while playback functions are

More information

Placing Text in Columns

Placing Text in Columns Chapter When entering a page of text it is sometimes advantageous to place that text in columns. This can make the passage easier to read and make more efficient use of the space available on a page. Microsoft

More information

SharePoint 2010 Instructions for Users

SharePoint 2010 Instructions for Users SharePoint 2010 Instructions for Users 1. Access your SharePoint Web site...2 2. Work with folders and documents in a Shared Documents Library...3 2.1 Edit a document...3 2.2 Create a New Document...3

More information

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

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

More information

Appendix J: Using Shortcut Keys and Shortcut Menus

Appendix J: Using Shortcut Keys and Shortcut Menus Appendix J: Using Shortcut Keys and Shortcut Menus Introduction This appendix covers shortcuts to many of the menu options, dialog boxes, and commands used in PC-DMIS. Using shortcuts will speed up your

More information

University of Sunderland. Microsoft Word 2007

University of Sunderland. Microsoft Word 2007 Microsoft Word 2007 10/10/2008 Word 2007 Ribbons you first start some of the programs in 2007 Microsoft Office system, you may be surprised by what you see. The menus and toolbars in some programs have

More information

Microsoft Access 2010

Microsoft Access 2010 www.jwalkonline.org/main michael@jwalkonline.org @MichaelJWalk Microsoft Access 2010 Part 3 Michael J. Walk It's about control: use advanced features of Access to control data entry, automate processes,

More information

PAS. Installation Guide. BG0608 Rev. A1. Copyright SATEC Ltd.

PAS. Installation Guide. BG0608 Rev. A1. Copyright SATEC Ltd. PAS Installation Guide BG0608 Rev. A1 Copyright 2011-2017 SATEC Ltd. Table of Contents Chapter 1 Installation... 3 1. Scope... 3 2. Minimal installation requirements... 3 3. Pre-installation steps... 3

More information

IronSync File Synchronization Server. IronSync FILE SYNC SERVER. User Manual. Version 2.6. May Flexense Ltd.

IronSync File Synchronization Server. IronSync FILE SYNC SERVER. User Manual. Version 2.6. May Flexense Ltd. IronSync FILE SYNC SERVER User Manual Version 2.6 May 2014 www.ironsync.com info@flexense.com 1 1 Product Overview...3 2 Product Installation Procedure...4 3 Using IronSync Client GUI Application...5 3.1

More information

Excel & Visual Basic for Applications (VBA)

Excel & Visual Basic for Applications (VBA) Class meeting #18 Monday, Oct. 26 th GEEN 1300 Introduction to Engineering Computing Excel & Visual Basic for Applications (VBA) user interfaces o on-sheet buttons o InputBox and MsgBox functions o userforms

More information

SP LOCKER USER MANUAL. v1.0

SP LOCKER USER MANUAL. v1.0 SP LOCKER USER MANUAL v1.0 Table of Contents 1 Introduction to the SP Locker Security Software... 2 2 Before You Get Started... 2 3 Features... 2 4 Public and Secured Partition... 3 5 How to use SP Locker...

More information

Installation and Upgrade Guide Zend Studio 7.0

Installation and Upgrade Guide Zend Studio 7.0 Installation and Upgrade Guide Zend Studio 7.0 By Zend Technologies, Inc. www.zend.com Table of Contents System Requirements... 3 Installing Zend Studio... 4 Migrating to Zend Studio 7.x from Zend Studio

More information

WinDSX New Installations

WinDSX New Installations WinDSX New Installations Use these instructions for new Installations. a) Make sure that the Comm Server PC has the.net Framework 4.0 or higher installed. b) Make sure you have Administrative Privileges

More information

Getting Started with Reflection Desktop Deployment

Getting Started with Reflection Desktop Deployment Getting Started with Reflection Desktop Deployment Deploying Reflection Desktop You can choose from several different approaches for installing and deploying Reflection Desktop. Deciding which approach

More information

Creating Pages with the CivicPlus System

Creating Pages with the CivicPlus System Creating Pages with the CivicPlus System Getting Started...2 Logging into the Administration Side...2 Icon Glossary...3 Mouse Over Menus...4 Description of Menu Options...4 Creating a Page...5 Menu Item

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

Microsoft Office 2013 (or Office) is a collection of software programs.

Microsoft Office 2013 (or Office) is a collection of software programs. 1 Microsoft Office 2013 (or Office) is a collection of software programs. Program Function Word - enables you to create documents such as letters and reports Excel - lets you work with numbers to prepare

More information

Wordman s Production Corner

Wordman s Production Corner Wordman s Production Corner By Dick Eassom, AF.APMP Three Excel Tricks...Just for a Change Three Problems One of my colleagues has the good fortune to have to manage marketing mailing lists. Since the

More information

Reference for Off-Campus Remote Desktop Connection ipad Edition

Reference for Off-Campus Remote Desktop Connection ipad Edition Reference for Off-Campus Remote Desktop Connection ipad Edition General: This guide is a step-by-step guide for remotely connecting to your work computer with an ipad. This is the quick reference guide,

More information