Input - Output dialog commands and boxes

Size: px
Start display at page:

Download "Input - Output dialog commands and boxes"

Transcription

1 input Request user input user_entry = input('prompt') user_entry = input('prompt', 's') Input - Output dialog commands and boxes The response to the input prompt can be any MATLAB expression, which is evaluated using the variables in the current workspace. Remarks user_entry = input('prompt') displays prompt as a prompt on the screen, waits for input from the keyboard, and returns the value entered in user_entry. user_entry = input('prompt', 's') returns the entered string as a text variable rather than as a variable name or numerical value. If you press the Return key without entering anything, input returns an empty matrix. The text string for the prompt can contain one or more '\n' characters. The '\n' means to skip to the next line. This allows the prompt string to span several lines. To display just a backslash, use '\\'. If you enter an invalid expression at the prompt, MATLAB displays the relevant error message and then prompts you again to enter input. Examples Press Return to select a default value by detecting an empty matrix: reply = input('do you want more? Y/N [Y]: ', 's'); if isempty(reply) reply = 'Y'; else reply = upper(reply); end disp(reply); reply = input('pierwszy wiersz \n Drugi wiersz\n Y/N [Y]: ', 's'); if isempty(reply) reply = 'Y'; else reply = upper(reply); end disp(reply);

2 inputdlg Create and open input dialog box answer = inputdlg(prompt) creates a modal dialog box and returns user input. answer = inputdlg('prompt'); answer_num = str2num(answer{1}); disp(answer); disp(answer_num); For multiple prompts in the cell array. prompt is a cell array containing prompt strings. answer = inputdlg({'prompt1', 'prompt2', 'prompt3'}); for i=1:3 answer_num(i) = str2num(answer{i}); end; disp(answer_num'); answer = inputdlg(prompt,dlg_title) dlg_title specifies a title for the dialog box. answer = inputdlg({'prompt1', 'prompt2', 'prompt3'}, 'Tytuł okna dialogowego'); for i=1:3 answer_num(i) = str2num(answer{i}); end; disp(answer_num ); answer = inputdlg(prompt,dlg_title,num_lines) num_lines specifies the number of lines for each value. If num_lines is a scalar, it applies to all prompts. If num_lines is a column vector, each element specifies the number of lines of input for a prompt. answer = inputdlg({'prompt1', 'prompt2', 'prompt3'}, 'Tytuł okna dialogowego', 2); for i=1:3 answer_num(i) = str2num(answer{i}); end; disp(answer_num); answer = inputdlg(prompt,dlg_title,num_lines,defans) defans specifies the default value to display for each prompt. defans must contain the same number of elements as prompt and all elements must be strings. prompt_tab = {'prompt1', 'prompt2', 'prompt3'}; start_value_tab = {'111', '222', '333'}; answer = inputdlg(prompt_tab, 'Tytuł okna dialogowego', 2, start_value_tab); for i=1:3 answer_num(i) = str2num(answer{i}); end; disp(answer_num);

3 answer = inputdlg(prompt, dlg_title, num_lines, defans, options) If options is the string 'on', the dialog is made resizable in the horizontal direction. If options is a structure, the fields shown in the following table are recognized: Field Resize WindowStyle Interpreter Can be 'on' or 'off' (default). If 'on', the window is resizable horizontally. Can be either 'normal' or 'modal' (default). Can be either 'none' (default) or 'tex'. If the value is 'tex', the prompt strings are rendered using LaTeX. prompt_tab = {'prompt1', 'prompt2', 'prompt3'}; start_value_tab = {'111', '222', '333'}; options.resize='on'; answer = inputdlg(prompt_tab, 'Tytuł okna dialogowego', 2, start_value_tab, options); for i=1:3 answer_num(i) = str2num(answer{i}); end; disp(answer_num); If the user clicks the Cancel button to close an inputdlg box, the dialog returns an empty cell array: answer = {}

4 msgbox Create and open message box h = msgbox(message) h = msgbox(message,title) h = msgbox(message,title,icon) h = msgbox(message,title,'custom',icondata,iconcmap) h = msgbox(...,createmode) h = msgbox(message) creates a message dialog box that automatically wraps Message to fit an appropriately sized figure. Message is a string vector, string matrix, or cell array. msgbox returns the handle of the message box in h. h = msgbox(message,title) specifies the title of the message box. h = msgbox(message,title,icon) specifies which icon to display in the message box. Icon is 'none', 'error', 'help', 'warn', or 'custom'. The default is 'none'. Message = 'Wiadomość'; Title = 'Tytuł' Icon = 'help'; h = msgbox(message,title,icon); h = msgbox(message,title,'custom',icondata,iconcmap) defines a customized icon. IconData contains image data defining the icon. IconCMap is the colormap used for the image. h = msgbox(...,createmode) specifies whether the message box is modal or nonmodal. Optionally, it can also specify an interpreter for Message and Title. If CreateMode is a string, it must be one of the values shown in the following table. CreateMode Value 'modal' 'non-modal' (default) 'replace' Replaces the message box having the specified Title, that was last created or clicked on, with a modal message box as specified. All other message boxes with the same title are deleted. The message box which is replaced can be either modal or nonmodal. Creates a new nonmodal message box with the specified parameters. Existing message boxes with the same title are not deleted. Replaces the message box having the specified Title, that was last created or clicked on, with a nonmodal message box as specified. All other message boxes with the same title are deleted. The message box which is replaced can be either modal or nonmodal.

5 If CreateMode is a structure, it can have fields WindowStyle and Interpreter. The WindowStyle field must be one of the values in the table above. Interpreter is one of the strings'tex' or 'none'. The default value for Interpreter is 'none'. questdlg Create and open question dialog box button = questdlg('qstring') button = questdlg('qstring','title') button = questdlg('qstring','title',default) button = questdlg('qstring','title','str1','str2',default) button = questdlg('qstring','title','str1','str2','str3',default) button = questdlg('qstring','title',..., options) button = questdlg('qstring') displays a modal dialog box presenting the question 'qstring'. The dialog has three default buttons, Yes, No, and Cancel. If the user presses one of these three buttons, button is set to the name of the button pressed. If the user presses the close button on the dialog without making a choice, button is set to the empty string. If the user presses the Return key, button is set to 'Yes'. 'qstring' is a cell array or a string that automatically wraps to fit within the dialog box. Example 1 button = questdlg('qstring','title') displays a question dialog with 'title' displayed in the dialog's title bar. button = questdlg('qstring','title',default) specifies which push button is the default in the event that the Return key is pressed. 'default' must be 'Yes', 'No', or 'Cancel'. button = questdlg('qstring','title','str1','str2',default) creates a question dialog box with two push buttons labeled 'str1' and 'str2'. default specifies the default button selection and must be 'str1' or 'str2'. button = questdlg('qstring','title','str1','str2','str3',default) creates a question dialog box with three push buttons labeled 'str1', 'str2', and 'str3'. default specifies the default button selection and must be 'str1', 'str2', or 'str3'. When default is specified, but is not set to one of the button names, pressing the Enter key displays a warning and the dialog remains open. button = questdlg('qstring','title',..., options) replaces the string default with a structure, options. The structure specifies which button string is the default answer, and whether to use TeX to interpret the question string, qstring. Button strings and dialog titles cannot use TeX interpretation. The options structure must include the fields Default and Interpreter, both strings. It can include other fields, but questdlg does not use them. You can set Interpreter to 'none' or 'tex'. If the Default field does not contain a valid button name, a command window warning is issued and the dialog box does not respond to pressing the Enter key. Create a dialog that requests a dessert preference and encode the resulting choice as an integer. % Construct a questdlg with three options choice = questdlg('please choose a dessert:', 'Dessert Menu', 'Ice cream', 'Cake', 'No thank you', 'No thank you'); % Handle response switch choice case 'Ice cream'

6 disp([choice ' coming right up.']) dessert = 1; break case 'Cake' disp([choice ' coming right up.']) dessert = 2; break case 'No thank you' disp('i''ll bring you your check.') dessert = 0; end The case statements can contain white space but are case-sensitive. pause Halt execution temporarily pause pause(n) pause on pause, by itself, causes the currently executing M-file to stop and wait for you to press any key before continuing. Pausing must be enabled for this to take effect. pause(n) pauses execution for n seconds before continuing, where n can be any nonnegative real number. The resolution of the clock is platform specific. A fractional pause of 0.01 seconds should be supported on most platforms. Pausing must be enabled for this to take effect. keyboard Input from keyboard keyboard keyboard, when placed in an M-file, stops execution of the file and gives control to the keyboard. The special status is indicated by a K appearing before the prompt. You can examine or change variables; all MATLAB commands are valid. This keyboard mode is useful for debugging your M-files.. To terminate the keyboard mode, type the command return then press the Return key.

7 uigetfile Open standard dialog box for retrieving files uigetfile [FileName,PathName,FilterIndex] = uigetfile(filterspec) [FileName,PathName,FilterIndex] = uigetfile(filterspec,dialogtitle) [FileName,PathName,FilterIndex] = uigetfile(filterspec,dialogtitle,defaultname) [FileName,PathName,FilterIndex] = uigetfile(...,'multiselect',selectmode) uigetfile displays a modal dialog box that lists files in the current directory and enables the user to select or type the name of a file to be opened. If the filename is valid and if the file exists, uigetfile returns the filename when the user clicks Open. Otherwise uigetfile displays an appropriate error message from which control returns to the dialog box. The user can then enter another filename or click Cancel. If the user clicks Cancel or closes the dialog window, uigetfile returns 0. If FilterSpec is a string that contains a filename, the filename is displayed and selected in the File name field and the file's extension is used as the default filter. If FilterSpec is a cell array of strings, the first column contains a list of file extensions. The optional second column contains a corresponding list of descriptions. These descriptions replace standard descriptions in the Files of type field. A description cannot be an empty string. If FilterSpec is not specified, uigetfile uses the default list of file types (i.e., all MATLAB files). After the user clicks Open and if the filename exists, uigetfile returns the name of the file in FileName and its path in PathName. If the user clicks Cancel or closes the dialog window, FileName and PathName are set to 0. FilterIndex is the index of the filter selected in the dialog box. Indexing starts at 1. If the user clicks Cancel or closes the dialog window, FilterIndex is set to 0. [FileName,PathName,FilterIndex] = uigetfile(...,'multiselect',selectmode) sets the multiselect mode to specify if multiple file selection is enabled for the uigetfile dialog. Valid values for selectmode are 'on' and 'off' (default). If 'MultiSelect' is 'on' and the user selects more than one file in the dialog box, then FileName is a cell array of strings, each of which represents the name of a selected file. Filenames in the cell array are in the sort order native to your platform. Because multiple selections are always in the same directory, PathName is always a string that represents a single directory. Example 1 The following statement displays a dialog box that enables the user to retrieve a file. The statement lists all MATLAB M- files within a selected directory. The name and path of the selected file are returned in FileName and PathName. Note that uigetfile appends All Files(*.*) to the file types when FilterSpec is a string. [FileName,PathName] = uigetfile('*.m','select the M-file');

8 Example 2 To create a list of file types that appears in the Files of type list box, separate the file extensions with semicolons, as in the following code. Note that uigetfile displays a default description for each known file type, such as "Simulink Models" for.mdl files. [filename, pathname] = uigetfile({'*.m';'*.mdl';'*.mat';'*.*'},'file Selector'); Example 3 If you want to create a list of file types and give them descriptions that are different from the defaults, use a cell array, as in the following code. This example also associates multiple file types with the 'MATLAB Files' description. [filename, pathname] = uigetfile(... {'*.m;*.fig;*.mat;*.mdl','matlab Files (*.m,*.fig,*.mat,*.mdl)'; '*.m', 'M-files (*.m)';... '*.fig','figures (*.fig)';... '*.mat','mat-files (*.mat)';... '*.mdl','models (*.mdl)';... '*.*', 'All Files (*.*)'},... 'Pick a file'); The first column of the cell array contains the file extensions, while the second contains the descriptions you want to provide for the file types. Note that the first entry of column one contains several extensions, separated by semicolons, all of which are associated with the description 'MATLAB Files (*.m,*.fig,*.mat,*.mdl)'. The code produces the dialog box shown in the following figure.

9 Example 4 The following code checks for the existence of the file and displays a message about the result of the open operation. [filename, pathname] = uigetfile('*.m', 'Pick an M-file'); if isequal(filename,0) disp('user selected Cancel') else disp(['user selected', fullfile(pathname, filename)]) end Example 5 This example creates a list of file types and gives them descriptions that are different from the defaults, then enables multiple file selection. The user can select multiple files by holding down the Shift or Ctrl key and clicking on a file. [filename, pathname, filterindex] = uigetfile(... { '*.mat','mat-files (*.mat)';... '*.mdl','models (*.mdl)';... '*.*', 'All Files (*.*)'},... 'Pick a file',... 'MultiSelect', 'on'); sound Play vector as sound. SOUND(Y,FS) sends the signal in vector Y (with sample frequency FS) out to the speaker on platforms that support sound. Values in Y are assumed to be in the range -1.0 <= y <= 1.0. Values outside that range are clipped. Stereo sounds are played, on platforms that support it, when Y is an N-by-2 matrix. SOUND(Y) plays the sound at the default sample rate of 8192 Hz. Example: load handel sound(y,fs) You should hear a snippet of Handel's Hallelujah Chorus.

10

GUI Input and Output. Greg Reese, Ph.D Research Computing Support Group Academic Technology Services Miami University

GUI Input and Output. Greg Reese, Ph.D Research Computing Support Group Academic Technology Services Miami University GUI Input and Output Greg Reese, Ph.D Research Computing Support Group Academic Technology Services Miami University GUI Input and Output 2010-13 Greg Reese. All rights reserved 2 Terminology User I/O

More information

MATLAB GUIs. We conclude our brief overview of MATLAB by looking at : Brief introduction to MATLAB GUI building. Back Close CM0268 MATLAB DSP GRAPHICS

MATLAB GUIs. We conclude our brief overview of MATLAB by looking at : Brief introduction to MATLAB GUI building. Back Close CM0268 MATLAB DSP GRAPHICS GUIs We conclude our brief overview of by looking at : Brief introduction to GUI building. 28 GUIs Building a GUI in is pretty straight forward and quick. You can create a GUI by hand. Use s GUI Development

More information

2Creating Reports: Basic Techniques. Chapter

2Creating Reports: Basic Techniques. Chapter 2Chapter 2Creating Reports: Chapter Basic Techniques Just as you must first determine the appropriate connection type before accessing your data, you will also want to determine the report type best suited

More information

MATLAB 7 Creating Graphical User Interfaces

MATLAB 7 Creating Graphical User Interfaces MATLAB 7 Creating Graphical User Interfaces Laying Out a Simple GUI Laying Out a Simple GUI In this section... Opening a New GUI in the Layout Editor on page 2-5 Setting the GUI Figure Size on page 2-8

More information

Appendix K Introduction to Microsoft Visual C++ 6.0

Appendix K Introduction to Microsoft Visual C++ 6.0 Appendix K Introduction to Microsoft Visual C++ 6.0 This appendix serves as a quick reference for performing the following operations using the Microsoft Visual C++ integrated development environment (IDE):

More information

Introduction to Graphical User Interface (GUI) MATLAB 6.5

Introduction to Graphical User Interface (GUI) MATLAB 6.5 UAE UNIVERSITY COLLEGE OF ENGINEERING ELECTRICAL ENGINEERING DEPARTMENT IEEE UAEU STUDENT BRANCH Introduction to Graphical User Interface (GUI) MATLAB 6.5 Presented By: Refaat Yousef Al Ashi 199901469

More information

EXAMPLE WITH NO NAME EXAMPLE WITH A NAME

EXAMPLE WITH NO NAME EXAMPLE WITH A NAME By using names, you can make your formulas much easier to understand and maintain. You can define a name for a cell range, function, constant, or table. Once you adopt the practice of using names in your

More information

Recording Supervisor Manual Presence Software

Recording Supervisor Manual Presence Software Presence Software Version 9.2 Date: 09/2014 2 Contents... 3 1. Introduction... 4 2. Installation and configuration... 5 3. Presence Recording architectures Operating modes... 5 Integrated... with Presence

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Introduction. Chapter 1

Introduction. Chapter 1 Chapter 1 Introduction MATLAB (Matrix laboratory) is an interactive software system for numerical computations and graphics. As the name suggests, MATLAB is especially designed for matrix computations:

More information

Call Recorder Oygo Manual. Version 1.001.11

Call Recorder Oygo Manual. Version 1.001.11 Call Recorder Oygo Manual Version 1.001.11 Contents 1 Introduction...4 2 Getting started...5 2.1 Hardware installation...5 2.2 Software installation...6 2.2.1 Software configuration... 7 3 Options menu...8

More information

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen

More information

Handout: Word 2010 Tips and Shortcuts

Handout: Word 2010 Tips and Shortcuts Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions

Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Document Management Quick Reference Guide

Document Management Quick Reference Guide Documents Area The Citadon CW folders have the look and feel of Windows Explorer. The name of the selected folder appears above, and the folder's contents are displayed in the right frame. Corresponding

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Using Flow Control with the HEAD Recorder

Using Flow Control with the HEAD Recorder 03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,

More information

KPN SMS mail. Send SMS as fast as e-mail!

KPN SMS mail. Send SMS as fast as e-mail! KPN SMS mail Send SMS as fast as e-mail! Quick start Start using KPN SMS mail in 5 steps If you want to install and use KPN SMS mail quickly, without reading the user guide, follow the next five steps.

More information

Inteset Secure Lockdown ver. 2.0

Inteset Secure Lockdown ver. 2.0 Inteset Secure Lockdown ver. 2.0 for Windows XP, 7, 8, 10 Administrator Guide Table of Contents Administrative Tools and Procedures... 3 Automatic Password Generation... 3 Application Installation Guard

More information

CNCTRAIN OVERVIEW CNC Simulation Systems 1995 2008

CNCTRAIN OVERVIEW CNC Simulation Systems 1995 2008 CNCTRAIN OVERVIEW CNC Simulation Systems 1995 2008 p2 Table of Contents Getting Started 4 Select a control system 5 Setting the Best Screen Layout 6 Loading Cnc Files 7 Simulation Modes 9 Running the Simulation

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

User s Guide for Polycom HDX Systems

User s Guide for Polycom HDX Systems User s Guide for Polycom HDX Systems Version 1.0 November 2006 Edition 3725-23978-001/A USER S GUIDE FOR POLYCOM HDX SYSTEMS Trademark Information Polycom, the Polycom logo design, and ViewStation are

More information

NØGSG DMR Contact Manager

NØGSG DMR Contact Manager NØGSG DMR Contact Manager Radio Configuration Management Software for Connect Systems CS700 and CS701 DMR Transceivers End-User Documentation Version 1.24 2015-2016 Tom A. Wheeler tom.n0gsg@gmail.com Terms

More information

Getting Started Using AudibleManager. AudibleManager 5.0

Getting Started Using AudibleManager. AudibleManager 5.0 Getting Started Using AudibleManager AudibleManager 5.0 Overview of AudibleManager... 5 AUDIBLE FOLDERS... 5 FOLDERS CONTENT WINDOW... 5 MOBILE DEVICES... 5 DEVICE VIEW... 5 DETAILS VIEW... 5 Functions

More information

Key Connected Office Voice User Reference Guide

Key Connected Office Voice User Reference Guide Key Connected Office Voice User Reference Guide 02/10/2016 031114/FT/13v1/EX Page 0 Key System User Reference Guide Table of Contents PLACING/RECEIVING CALLS... 1 Answer a Call... 1 Dialing a Number or

More information

ICP Data Entry Module Training document. HHC Data Entry Module Training Document

ICP Data Entry Module Training document. HHC Data Entry Module Training Document HHC Data Entry Module Training Document Contents 1. Introduction... 4 1.1 About this Guide... 4 1.2 Scope... 4 2. Step for testing HHC Data Entry Module.. Error! Bookmark not defined. STEP 1 : ICP HHC

More information

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual

Vodafone PC SMS 2010. (Software version 4.7.1) User Manual Vodafone PC SMS 2010 (Software version 4.7.1) User Manual July 19, 2010 Table of contents 1. Introduction...4 1.1 System Requirements... 4 1.2 Reply-to-Inbox... 4 1.3 What s new?... 4 2. Installation...6

More information

3. (1.0 point) To ungroup worksheets, you can click a sheet of a sheet not in the group. a. index b. panel c. tab d. pane

3. (1.0 point) To ungroup worksheets, you can click a sheet of a sheet not in the group. a. index b. panel c. tab d. pane Excel Tutorial 6 1. (1.0 point) To select adjacent worksheets, you use the key. a. Shift b. Alt c. Ctrl d. F1 2. (1.0 point) The caption indicates a worksheet group. a. [Worksheets] b. [Selected Sheets]

More information

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009 State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,

More information

AN INTRODUCTION TO STAROFFICE WRITER

AN INTRODUCTION TO STAROFFICE WRITER CHAPTER 1 AN INTRODUCTION TO STAROFFICE WRITER 1.1 An Introduction to StarOffice StarOffice is an application that is designed to work on different operating systems. StarOffice is a full-featured office

More information

managedip SIP, PRI and Essentials

managedip SIP, PRI and Essentials Table of Contents Simultaneous Ring... 2 Sequential Ring... 5 Call Forward Not Reachable... 7 CommPilot Express... 8 Personal Mobility is a package of features that allows you to answer calls to your desk

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

FINACS INVENTORY Page 1 of 9 INVENTORY TABLE OF CONTENTS. 1. Stock Movement...2 2. Physical Stock Adjustment...7. (Compiled for FINACS v 2.12.

FINACS INVENTORY Page 1 of 9 INVENTORY TABLE OF CONTENTS. 1. Stock Movement...2 2. Physical Stock Adjustment...7. (Compiled for FINACS v 2.12. FINACS INVENTORY Page 1 of 9 INVENTORY TABLE OF CONTENTS 1. Stock Movement...2 2. Physical Stock Adjustment...7 (Compiled for FINACS v 2.12.002) FINACS INVENTORY Page 2 of 9 1. Stock Movement Inventory

More information

BusinessObjects: General Report Writing for Version 5

BusinessObjects: General Report Writing for Version 5 BusinessObjects: General Report Writing for Version 5 Contents 1 INTRODUCTION...3 1.1 PURPOSE OF COURSE...3 1.2 LEVEL OF EXPERIENCE REQUIRED...3 1.3 TERMINOLOGY...3 1.3.1 Universes...3 1.3.2 Objects...4

More information

Using Adobe Dreamweaver CS4 (10.0)

Using Adobe Dreamweaver CS4 (10.0) Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called

More information

Cisco 8851. Dial Plan. Feature and Session Buttons. Your Phone

Cisco 8851. Dial Plan. Feature and Session Buttons. Your Phone Cisco 8851 Dial Plan Internal Calls: Dial 5-digit extension External Calls: Domestic/Local: 9+1 Area Code + Number Int l: 9+011+Country Code + Number Emergency: 9+911 or 911 Your Phone 1. Incoming call

More information

Agent Tasks. Dial from Directory 1. In the Content panel, select the target directory. 2. Click the phone number you want to call.

Agent Tasks. Dial from Directory 1. In the Content panel, select the target directory. 2. Click the phone number you want to call. Agent Tasks Call Center Interface The following elements are available from the Call Center interface: Menu bar Located at the top, it allows you to set up your preferences for using the Call Center. Global

More information

Nintex Forms 2013 Help

Nintex Forms 2013 Help Nintex Forms 2013 Help Last updated: Friday, April 17, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

More information

Fleet Manager II. Operator Manual

Fleet Manager II. Operator Manual Fleet Manager II Operator Manual Table of Contents Table of Contents Table of Contents 2 About this Publication 4 Trademarks 5 About Fleet Manager II 6 Contact BW Technologies by Honeywell 7 Getting Started

More information

How do I share a file with a friend or trusted associate?

How do I share a file with a friend or trusted associate? Sharing Information How do I share a file with a friend or trusted associate? Sharing a file in InformationSAFE is easy. The share utility in InformationSAFE allows you to securely share your information

More information

Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424

Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424 Scan to PC Desktop: Image Retriever 5.2 for Xerox WorkCentre C2424 Scan to PC Desktop includes Image Retriever, which is designed to monitor a specified folder on a networked file server or local drive

More information

Update: About Apple RAID Version 1.5 About this update

Update: About Apple RAID Version 1.5 About this update apple Update: About Apple RAID Version 1.5 About this update This update describes new features and capabilities of Apple RAID Software version 1.5, which includes improvements that increase the performance

More information

Introduction. POP and IMAP Servers. MAC1028 June 2007

Introduction. POP and IMAP Servers. MAC1028 June 2007 MAC1028 June 2007 Getting Started with Thunderbird 2.0 For Macintosh OS X Author: John A. Montgomery Adapted to OS X by: Peter Lee Revised by Mitchell Ochi and Deanna Pasternak Introduction...1 POP and

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Macros in Word & Excel

Macros in Word & Excel Macros in Word & Excel Description: If you perform a task repeatedly in Word or Excel, you can automate the task by using a macro. A macro is a series of steps that is grouped together as a single step

More information

Advanced Client Phone Training

Advanced Client Phone Training Advanced Client Phone Training Interaction Client Last Updated December 19, 2008 This document outlines advanced features and configuration of the Interaction Client. DVS, Inc. 60 Revere Dr., Suite 201

More information

MATLAB. Creating Graphical User Interfaces Version 6. The Language of Technical Computing. Computation. Visualization. Programming

MATLAB. Creating Graphical User Interfaces Version 6. The Language of Technical Computing. Computation. Visualization. Programming MATLAB The Language of Technical Computing Computation Visualization Programming Creating Graphical User Interfaces Version 6 How to Contact The MathWorks: www.mathworks.com comp.soft-sys.matlab support@mathworks.com

More information

Everyday Excel Stuff Excel Day Planner Organizer Reference Guide

Everyday Excel Stuff Excel Day Planner Organizer Reference Guide Everyday Excel Stuff Excel Day Planner Organizer Reference Guide Opening & Saving the Excel Day Planner... 2 1. Opening the Day Planner...2 2. Saving the Day Planner...2 Daily Task Sheet... 2 1. Entering

More information

Move between open workbooks. Display the print menu. Select whole spreadsheet. Microsoft Excel Keyboard Keys. General

Move between open workbooks. Display the print menu. Select whole spreadsheet. Microsoft Excel Keyboard Keys. General Microsoft Excel Keyboard Keys Source: http://allhotkeys.com/microsoft_excel_hotkeys.html General New file Ctrl + N Open file Ctrl + O Save file Ctrl + S Move between open workbooks Ctrl + F6 Close file

More information

USB Recorder User Guide

USB Recorder User Guide USB Recorder User Guide Table of Contents 1. Getting Started 1-1... First Login 1-2... Creating a New User 2. Administration 2-1... General Administration 2-2... User Administration 3. Recording and Playing

More information

UM8000 MAIL USER GUIDE

UM8000 MAIL USER GUIDE UM8000 MAIL USER GUIDE INT-2076 (UNIV) Issue 1.0 INTRODUCTION Welcome to UM8000 Mail User Guide. The UM8000 Mail is a simple yet powerful voice messaging system that can greet your callers and record your

More information

Lotus Notes Client Version 8.5 Reference Guide

Lotus Notes Client Version 8.5 Reference Guide Lotus Notes Client Version 8.5 Reference Guide rev. 11/19/2009 1 Lotus Notes Client Version 8.5 Reference Guide Accessing the Lotus Notes Client From your desktop, double click the Lotus Notes icon. Logging

More information

Business e-cash Manager Plus Automated Clearing House (ACH)

Business e-cash Manager Plus Automated Clearing House (ACH) Business e-cash Manager Plus Automated Clearing House (ACH) 1 Welcome to the Business e-cash Manager Plus WebEx training on Business ecash Manager Plus s ACH Module. 1 Table of Contents i. Add ACH Profile

More information

USB Recorder. User s Guide. Sold by: Toll Free: (877) 389-0000

USB Recorder. User s Guide. Sold by:  Toll Free: (877) 389-0000 USB Recorder User s Guide Sold by: http://www.twacomm.com Toll Free: (877) 389-0000 Table of Contents 1. Getting Started 1-1...First Login 1-2...Creating a New User 2. Administration 2-1...General Administration

More information

Introduction to Matlab

Introduction to Matlab Introduction to Matlab Social Science Research Lab American University, Washington, D.C. Web. www.american.edu/provost/ctrl/pclabs.cfm Tel. x3862 Email. SSRL@American.edu Course Objective This course provides

More information

BulkSMS Text Messenger Product Manual

BulkSMS Text Messenger Product Manual BulkSMS Text Messenger Product Manual 1. Installing the software 1.1. Download the BulkSMS Text Messenger Go to www.bulksms.com and choose your country. process. Click on products on the top menu and select

More information

SCATS. EDI File Verification. User Manual

SCATS. EDI File Verification. User Manual SCATS EDI File Verification User Manual Helpdesk Phone Number: 601-359-3205 Table of Contents Table of Contents 1 Buttons 2 Menus.. 2 File Menu Items..... 3 Clear 3 Exit.. 3 Help Menu Items.. 3 User Manual.

More information

Impact Call PC. call001. Impact Call User s Guide

Impact Call PC. call001. Impact Call User s Guide R Impact Call PC call001 Impact Call User s Guide Comdial strives to design the features in our communications systems to be fully interactive with one another. However, this is not always possible, as

More information

CHAPTER 6: SEARCHING AN ONLINE DATABASE

CHAPTER 6: SEARCHING AN ONLINE DATABASE CHAPTER 6: SEARCHING AN ONLINE DATABASE WHAT S INSIDE Searching an Online Database... 6-1 Selecting a Display Mode... 6-1 Searching a Database... 6-1 Reviewing References... 6-2 Finding Full Text for a

More information

CNC Transfer. Operating Manual

CNC Transfer. Operating Manual Rank Brothers Ltd CNC Transfer Operating Manual Manufactured by: Rank Brothers Ltd 56 High Street, Bottisham, Cambridge CB25 9DA, England Tel: +44 (0)1223 811369 Fax: +44 (0)1223 811441 Website: http://www.rankbrothers.co.uk/

More information

KEYBOARD SHORTCUTS. Note: Keyboard shortcuts may be different for the same icon depending upon the SAP screen you are in.

KEYBOARD SHORTCUTS. Note: Keyboard shortcuts may be different for the same icon depending upon the SAP screen you are in. KEYBOARD SHORTCUTS Instead of an SAP icon button, you can use a keyboard shortcut. A keyboard shortcut is a key or combination of keys that you can use to access icon button functions while you are working

More information

Version 1.5 Satlantic Inc.

Version 1.5 Satlantic Inc. SatCon Data Conversion Program Users Guide Version 1.5 Version: 1.5 (B) - March 09, 2011 i/i TABLE OF CONTENTS 1.0 Introduction... 1 2.0 Installation... 1 3.0 Glossary of terms... 1 4.0 Getting Started...

More information

FirstClass FAQ's An item is missing from my FirstClass desktop

FirstClass FAQ's An item is missing from my FirstClass desktop FirstClass FAQ's An item is missing from my FirstClass desktop Deleted item: If you put a item on your desktop, you can delete it. To determine what kind of item (conference-original, conference-alias,

More information

MATLAB Functions. function [Out_1,Out_2,,Out_N] = function_name(in_1,in_2,,in_m)

MATLAB Functions. function [Out_1,Out_2,,Out_N] = function_name(in_1,in_2,,in_m) MATLAB Functions What is a MATLAB function? A MATLAB function is a MATLAB program that performs a sequence of operations specified in a text file (called an m-file because it must be saved with a file

More information

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ PharmaSUG 2014 PO10 Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ ABSTRACT As more and more organizations adapt to the SAS Enterprise Guide,

More information

PLAY VIDEO. Close- Closes the file you are working on and takes you back to MicroStation V8i Open File dialog.

PLAY VIDEO. Close- Closes the file you are working on and takes you back to MicroStation V8i Open File dialog. Chapter Five Menus PLAY VIDEO INTRODUCTION To be able to utilize the many different menus and tools MicroStation V8i offers throughout the program and this guide, you must first be able to locate and understand

More information

Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003

Microsoft Migrating to PowerPoint 2010 from PowerPoint 2003 In This Guide Microsoft PowerPoint 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free PowerPoint

More information

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

All Tech Notes and KBCD documents and software are provided "as is" without warranty of any kind. See the Terms of Use for more information.

All Tech Notes and KBCD documents and software are provided as is without warranty of any kind. See the Terms of Use for more information. Tech Note 115 Overview of the InTouch 7.0 Windows NT Services All Tech Notes and KBCD documents and software are provided "as is" without warranty of any kind. See the Terms of Use for more information.

More information

WS_FTP Professional 12

WS_FTP Professional 12 WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files

More information

Tutorial 3 Maintaining and Querying a Database

Tutorial 3 Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2013 Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the Query window in

More information

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2013 Enhanced Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the

More information

Business Digital Voice My Features My Numbers

Business Digital Voice My Features My Numbers My Numbers allows individual users to manage their personal phone directory, speed dial, and access enterprise phone numbers. This is also where the user will input alternate telephone number(s) for call

More information

Audacity 1.2.4 Sound Editing Software

Audacity 1.2.4 Sound Editing Software Audacity 1.2.4 Sound Editing Software Developed by Paul Waite Davis School District This is not an official training handout of the Educational Technology Center, Davis School District Possibilities...

More information

Unified Messaging. User Guide

Unified Messaging. User Guide Unified Messaging User Guide Notice This user guide is released by Inter-Tel, Inc. as a guide for end-users. It provides information necessary to use Unified Messaging v2.2. The contents of this user

More information

Technical Documentation Version 6.7. Slots

Technical Documentation Version 6.7. Slots Technical Documentation Version 6.7 Slots CADSWES S Center for Advanced Decision Support for Water and Environmental Systems These documents are copyrighted by the Regents of the University of Colorado.

More information

Chapter 9 Telephone Conferencing

Chapter 9 Telephone Conferencing Chapter 9 Telephone Conferencing The Telephony feature of Elluminate Live! enables you to conduct your audio communications with other session attendees via telephone conferencing, while continuing to

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Welcome to Ipswitch Instant Messaging

Welcome to Ipswitch Instant Messaging Welcome to Ipswitch Instant Messaging What is Instant Messaging (IM), anyway? In a lot of ways, IM is like its cousin: e-mail. E-mail, while it's certainly much faster than the traditional post office

More information

NovaBACKUP. User Manual. NovaStor / November 2011

NovaBACKUP. User Manual. NovaStor / November 2011 NovaBACKUP User Manual NovaStor / November 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without

More information

Nokia Internet Modem User Guide

Nokia Internet Modem User Guide Nokia Internet Modem User Guide 9216562 Issue 1 EN 2009 Nokia. All rights reserved. Nokia, Nokia Connecting People and Nokia Original Accessories logo are trademarks or registered trademarks of Nokia Corporation.

More information

Right-click the Start button and select Properties. Click the Customize button and choose from the options displayed:

Right-click the Start button and select Properties. Click the Customize button and choose from the options displayed: What s New in Windows 7 & Office 2010 www.salford.ac.uk/library Contents 1 Windows 7... 2 2 General Office 2010... 4 3 Access... 5 4 Excel 2010... 7 5 Outlook... 8 6 PowerPoint... 9 7 Word... 10 1 (KS

More information

The Application Getting Started Screen is display when the Recruiting Matrix 2008 Application is Started.

The Application Getting Started Screen is display when the Recruiting Matrix 2008 Application is Started. Application Screen The Application Getting Started Screen is display when the Recruiting Matrix 2008 Application is Started. Navigation - The application has navigation tree, which allows you to navigate

More information

Appointment Scheduler

Appointment Scheduler EZClaim Appointment Scheduler User Guide Last Update: 11/19/2008 Copyright 2008 EZClaim This page intentionally left blank Contents Contents... iii Getting Started... 5 System Requirements... 5 Installing

More information

PaymentNet Federal Card Solutions Cardholder FAQs

PaymentNet Federal Card Solutions Cardholder FAQs PaymentNet Federal Card Solutions It s easy to find the answers to your questions about PaymentNet! June 2014 Frequently Asked Questions First Time Login How do I obtain my login information?... 2 How

More information

BCSD WebMail Documentation

BCSD WebMail Documentation BCSD WebMail Documentation Outlook Web Access is available to all BCSD account holders! Outlook Web Access provides Webbased access to your e-mail, your calendar, your contacts, and the global address

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information

Downloading <Jumping PRO> from www.vola.fr-------------------------------------------- Page 2

Downloading <Jumping PRO> from www.vola.fr-------------------------------------------- Page 2 Downloading from www.vola.fr-------------------------------------------- Page 2 Installation Process on your computer -------------------------------------------- Page 5 Launching

More information

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

More information

Context-sensitive Help Guide

Context-sensitive Help Guide MadCap Software Context-sensitive Help Guide Flare 11 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

Business Objects Version 5 : Introduction

Business Objects Version 5 : Introduction Business Objects Version 5 : Introduction Page 1 TABLE OF CONTENTS Introduction About Business Objects Changing Your Password Retrieving Pre-Defined Reports Formatting Your Report Using the Slice and Dice

More information

Part 2. Copyright 1998 Philips Consumer Communications L.P. All rights reserved. Printed in Mexico. Issue 1AT&T 848229506

Part 2. Copyright 1998 Philips Consumer Communications L.P. All rights reserved. Printed in Mexico. Issue 1AT&T 848229506 2 User's Manual for Two-Line Digital Answering System Telephone with Speakerphone 1872 Fold open this paper for information about this telephone's installation and operation. Please read Part 1 Important

More information

Create Database Tables 2

Create Database Tables 2 Create Database Tables 2 LESSON SKILL MATRIX Skill Exam Objective Objective Number Creating a Database Creating a Table Saving a Database Object Create databases using templates Create new databases Create

More information

**Web mail users: Web mail provides you with the ability to access your email via a browser using a "Hotmail-like" or "Outlook 2003 like" interface.

**Web mail users: Web mail provides you with the ability to access your email via a browser using a Hotmail-like or Outlook 2003 like interface. Welcome to NetWest s new and improved email services; where we give you the power to manage your email. Please take a moment to read the following information about the new services available to you. NetWest

More information

3 IDE (Integrated Development Environment)

3 IDE (Integrated Development Environment) Visual C++ 6.0 Guide Part I 1 Introduction Microsoft Visual C++ is a software application used to write other applications in C++/C. It is a member of the Microsoft Visual Studio development tools suite,

More information

Windows XP File Management

Windows XP File Management Windows XP File Management As you work with a computer creating more and more documents, you need to find a way to keep this information organized. Without a good organizational method, all your files

More information