...i IBM SPSS Data Collection Author 6.0.1 User’s Guide Note: Before using this information and the product it supports, read the general information under Notices on p. 376. This edition applies to IBM SPSS Data Collection Author 6.0.1 and to all subsequent releases and modifications until otherwise indicated in new editions. Adobe product screenshot(s) reprinted with permission from Adobe Systems Incorporated. Microsoft product screenshot(s) reprinted with permission from Microsoft Corporation. Licensed Materials - Property of IBM Licensed Materials - Property of IBM © Copyright IBM Corporation 2000, 2011 Licensed Materials - Property of IBM © Copyright IBM Corporation 2000, 2011 U.S. Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Preface Welcome to the IBM® SPSS® Data Collection Author 6.0.1 User’s Guide. This guide provides information on using the IBM® SPSS® Data Collection Author application. For information about installing the product, see the IBM SPSS Data Collection Desktop 6.0.1 Installation Guide. Adobe Portable Document Format (.pdf) versions of the guides are available on the IBM SPSS Data Collection Desktop 6.0.1 CD-ROM. Viewing and printing the documents requires Adobe Reader. If necessary, you can download it at no cost from www.adobe.com. Use the Adobe Reader online Help for answers to your questions regarding viewing and navigating the documents. Notice: IBM® SPSS® Data Collection...
Words: 113493 - Pages: 454
...BASIC DRAWING COMMANDS FOR AUTOCAD Measuring Commands GRID: Displays a grid of dots at a desired spacing on the screen. Command: GRID (enter) On/Off/Tick spacing(x)/Aspect: (enter value) (enter) SNAP: Specifies a "round off" interval so that points entered with the mouse can be locked into alignment with the grid spacing. Command: SNAP (enter) On/Off/Value/Aspect/Rotate/Style: (enter value) (enter) Basic Draw Commands CIRCLE: Draws circles of any size. Command: Circle (enter) 3P/2P/TTR/: (pick a center point) Diameter or : (Pick a point on the circle) LINE: Draws straight lines between two points Command: LINE (enter) From Point: (pick a point using the mouse) To Point: (Pick a point using the mouse) To Point: (Press return to end the command) ARC: Draws an arc (any part of a circle or curve) through three known points. Command: ARC (enter) Center/ < Start point > : (pick the first point on the arc) Center/End/ < Second point > : C Center: (pick the arc's center point) Angle/Length of chord/ : (pick the arc endpoint) Display Commands LIMITS: Sets the size of the drawing paper. For size "A" drawing paper the limits should be set for 10.5 x 8. Command: LIMITS (enter) On/Off/Lower left corner (enter) Upper right corner: 10.5,8 (enter) ZOOM: Enlarges or reduces the display of a drawing. Command: ZOOM (enter) All/Center/Dynamic/Extents/Left/Previous/Vmax/Window/: ...
Words: 1467 - Pages: 6
...drawing template file. When you use a template file, new drawings created from the template automatically use the settings defined in the template. This saves you setup time and helps to make sure each drawing you create follows your company’s CAD standards. Drawing template files have a .dwt file extension Some of the settings stored in drawing template files include ■ Unit type and scale (precision) ■ Title blocks/borders, blocks, and logos ■ Layer names ■ Snap, grid, and ortho settings ■ Grid limits ■ Annotation styles ■ Linetypes To start a drawing with a template 1 Click Start menu (Windows) ➤ (All) Programs ➤ Autodesk ➤ AutoCAD 2011 ➤ AutoCAD 2011 - English. 2 NOTE Close the Welcome Screen, if displayed. The AutoCAD window opens with an empty drawing file Drawing1.dwg. 3 Click ➤ New. 2 | Tutorial 2: Drawing Setup in AutoCAD 2011 4 In the Select Template dialog box, select Tutorial-iArch.dwt. 5 Click Open to open the Tutorial-iArch.dwt template. Lesson 1: Use a Drawing Template | 3 Notice that the...
Words: 1835 - Pages: 8
...share with other users on the same computer or who are connected through a network. A: Documents folder 6) What is the command center for configuring Windows settings? A: Control Panel 7) Change the size of the program window and exits the program. A: Title bar 8) You can shrink the Ribbon to one line that shows the tab names by _____ any tab. A: Double-clicking 9) A _______ is a window that opens on top of the program window. A: Dialog Box 10) In all Office programs, you open, save, and close files in the same way with_____. A: Office Button 11) To view Web pages, you need special software called a ______. A: Web browser 12) The ____ is a vast network of computers located all over the world and linked to one another. A: Internet 13) Change how a file is displayed in the workspace. A: view buttons 14) To create a new, blank file in any Office program, click the _____. A: Office Button 15) The ______ shows all the files in the folder that the active program can open. A: Open Dialog Box Word 1) Shows how a document will look when it is printed. A: Print Layout 2) Simulates the way a document will look when it is viewed as a Web Page. A: Web Layout 3) How to move the insertion point to the beginning of the document? A: Ctrl+Home 4) To move the insertion point to the end of the line, press what key? A: End 5) ______ is the use of computer software to enter and edit text. A: Word...
Words: 1344 - Pages: 6
...I know the name sounds funny, but I am doing that on purpose to catch the attention of my potential customers. I want the name of my store to stick in their minds, and what better way to o than a pun or play on words. I will start off with two types of balls, a football and a basketball. The football will be brown in color, will have white laces, and will come in different sizes according to the level of the athlete and also to have a range in prices. It will range in size from miniature footballs for fun, small for beginners and as gift items, medium or college level, and to a large size for professional athletes, or just people who like to imitate professional athletes for fun or for souvenirs, like the NFL. It will also have two styles: a nylon mesh material or a traditional pebble-grained leather cover or cowhide. There will also be different brands, such as Wilson, Starter, and Nike footballs. The user can also make their selections by size, type, name brand, or price. The basketball will range in colors, from traditional colors such as different orange...
Words: 2125 - Pages: 9
...Visual Basic – Messages and data input/output Introduction One way for a user to communicate with a procedure is via a dialogue box. The easiest way to do this in VB is to use one of the pre-defined ones. VB has two kinds, a Message box and an Input box. Message box The MsgBox function displays a message, waits for the user to click a button and returns a value indicating which button has been chosen. The simplest MsgBox contains only a message string and an OK button. The general syntax is MsgBox(prompt [,buttons] [,title]), where the quantities within [] are optional arguments, with prompt: string expression displayed in the message (max length 1024 characters) buttons: numerical expression that is sum of values specifying the type of buttons to display, title: string expression displayed in the title bar. Some of the button values are given below. (For a full list see the Help file). Value Constant Display 0 vbOKOnly OK button only 1 vbOKCancel OK and Cancel buttons 3 vbYesNoCancel Yes, No and Cancel buttons 4 vbYesNo Yes and No buttons 32 vbQuestion Query icon 48 vbExclamation Warning message icon 0 vbDefaultButton1 First button is default 256 vbDefaultButton2 Second button is default 512 vbDefaultButton3 Third button is default The value returned by the MsgBox function depends on the button pressed. Some values are listed below. Button selected Value Constant OK 1 vbOK Cancel 2 vbCancel Yes 6 vbYes No 7 vbNo The MsgBox function can be used as a simple debug tool. To...
Words: 930 - Pages: 4
...Unit 1 Assignment 1: Research HTML 5 Enhancements HTML5 Example of tags: <section> The section tag represents a generic document or application section. A section, in this context, is a thematic grouping of content, typically with a heading. Examples of sections would be chapters, the tabbed pages in a tabbed dialog box, or the numbered sections of a thesis. A Web site's home page could be split into sections for an introduction, news items, contact information. <section> <h1>Twitter Section</h1> <ul> <li><a href="http://twitter.com/W3C">Twitter</a></li> <li><a href="http://identi.ca/w3c">Identi.ca</a></li> </ul> </section> <header> The header tag represents a group of introductory or navigational aids. A header tag is intended to usually contain the section’s heading , but this is not required. The header tag can also be used to wrap a section’s table of contents, a search form, or any relevant logos. <header> <h1>Brandon’s Awesome</h1> <p class="tagline">A lot of effort went into making this effortless.</p> … </header> <footer> The footer tag represents a footer for its nearest ancestor sectioning content or sectioning root element. A footer typically contains information about its section...
Words: 399 - Pages: 2
...IT110-1301B-02 Introduction to Programming Week 2 March 4, 2013 Contents Week 1: Project Outline 3 Week 1: Class Diagrams 4 Week 1: Use Case Diagrams 5 Week 2: Java Fundamentals 6 Week 3: Java Control Structures 9 Week 4: Error Handling and File Input/Output 10 Week 5: Final Application Design and Screenshots 11 Week 1: Project Outline The name of my company is called Turkey Shooter INC. We are located in Montgomery, Alabama. The product we produce and sell is turkey calls. The turkey calls are all wooden and handmade. The price for the call is $25.00. You can choose between three color stains, they are natural, cherry, and walnut. They are hand held and easy to use. They are 6 inches in height and 2 inches in width. The calls can be used by any hunter male or female, beginner or expert. Turkey Call Colors Walnut (00781) Natural (00782) Cherry (00783) Week 1: Class Diagrams Turkey Call | DescriptionCostPriceColor ID | Set Description: ( )Set Cost: ( )Set Price: ( )Get Description: ( )Get Cost: ( )Get Price: ( )Get Color ID: ( ) | The Product class is a system that will help in ordering the turkey calls. This will break down the attributes into the price, color, and give a description along with the ID number. This will make it simple to find the product online. Customers | NameCredit Card InfoQuantityAddress | Set Name:...
Words: 496 - Pages: 2
...for 5 courses in a dialog box. Assumptions: We have assumed that user enters all the details correctly in the program. Task Descriptions: To Display the class schedule of 5 courses 1. Run the program on any Java software * You can run your class scheduling program using any Java platforms like NetBeans, Eclipse, and Command prompt. 2. Enter the course details 3.1. Enter the course title * Type the name of the course in the dialog box that appears. 3.2.1. Click ok * After you have typed the course title in the dialog box , click ok 3.2.2. Click cancel * This terminates the program 3.2. Enter the no of Credit * Type the no of credit in the dialog box that appears in the screen. 3.3.3. Click Ok * After you have typed the no of credit 3.3.4. Click Ok on the Warning Dialog box * If you enter the no of credit wrongly a warning dialog box appears explaining the error made. Click Ok on the warning dialog box, then rectify your error 3.3.5. Click Cancel * This terminates the program 3.3. Enter the start time of the course * Type the start time of the course in the dialog box that appears in the screen. 3.4.6. Click Ok * After you have typed the start time of the course 3.4.7. Click Ok on the Warning Dialog box * If you enter the start time of the course wrong a warning dialog box appears explaining...
Words: 721 - Pages: 3
...Exam Pre-Installation Before starting this Installation, make sure you have an application to extract file, such as WinZip or WinRAR. Installation Using Window Explorer (Not Internet Explorer), Navigate to the folder where you save the Avanset Visual CertExam Suite 3.0.1 Incl. Patch - ASA [deepstatus] Double Click Avanset Visual CertExam Suite 3.0.1 Incl. Patch - ASA [deepstatus] Right Click visual_certexam_suite_setup and Select Run as Administrator Click Yes to the User Account Control Dialog Box that is displayed. (Could Not Capture the Window) Select English and Click Ok button to the Select Setup Language Dialog Window Click Next button Click I Agree button Take the default installation location. Also note where the application is going to be placed. If you want you can change the location Click the Next button in the Select Component Dialog Window Click the Next button to Additional Tasks Dialog Window Click the Install button in Ready to Install Dialog Window and allow program to install Click Finish (Another window missed) Visual CertExam Manager [TRIAL COPY] window is displayed Click X to Close Visual CertExam Manager [TRIAL COPY] window The Installation is completed. Patching the Application Navigate back to the location where you save the Avanset Visual CertExam Suite 3.0.1 Incl. Patch - ASA [deepstatus] folder Look for ASA.rar or ASA.zip file Extract this file to a Folder of its name type or name of your chosen. For this demonstration...
Words: 592 - Pages: 3
...Medisoft Manual – easy step by step guide With this manual, I will show you how to use Medisoft with basic simple step by step instructions. You will feel comfortable using this program and have confidence in knowing you are entering the information correctly. I will first give you an introduction to Medisoft. Medisoft is a practice management program that uses information about patients, providers, insurance carriers, procedures, and diagnoses to bill insurance carriers and patients for healthcare services. Medisoft also contains a built in scheduling application called Office Hours, which allows you to schedule appointments or change appointments with ease. With Medisoft you can do the following tasks commonly used in a medical office: Enter information on new patients and change information on established patients as needed. Enter transactions, such as charges, to patients’ accounts. Submit insurance claims to payers. Record payments and adjustments from patients and insurance companies. Print walkout statements and remainder statements for patients. Monitor collections activities. Print standard reports or create custom reports. Schedule appointments. How to change the program date 1. Click Set Program Date on the File menu or click the date displayed in the lower right corner of the Medisoft window. 2. To change the month, click the word displayed for the current month, and the abbreviations for the months appear in the calendar window...
Words: 1184 - Pages: 5
...105 WK 5 Midterm Exam - All Possible Questions To Purchase Click Link Below: http://strtutorials.com/CIS-105-WK-5-Midterm-Exam-All-Possible-Questions-CIS1051.htm CIS 105 WK 5 Midterm Exam - All Possible Questions Chapter 9 TRUE/FALSE 1. You can have more than one Office program open at once. 2. When you point to a program button on the taskbar, a hangnail of each open window in that program is displayed. 3. The zoom percentage can be adjusted up to 400% in PowerPoint and Word. 4. You will see a vertical scroll bar in some Office program windows if the workspace is wider than the window. 5. You can create, save, and print files from Backstage view. 6. 800 X 600 is lower resolution than 1024 X 768. 7. A dialog box is a window that opens on top of the program window in which you enter or choose settings for performing a task. 8. Contextual tabs are found on task panes. 9. A file name (including descriptive title and extension) can contain up to 255 characters. 10. If you want to move text from one location to another, you first copy it and then paste it in the desired location. MODIFIED TRUE/FALSE 1. Access is used to enter, maintain, and retrieve related information in a format known as a database. _________________________ 2. All Office programs use a(n) status bar, which contains the name of the open file, the program name, the sizing buttons, and the Close button. _________________________ 3. The smallest zoom percentage...
Words: 1255 - Pages: 6
...105 WK 5 Midterm Exam - All Possible Questions To Purchase Click Link Below: http://strtutorials.com/CIS-105-WK-5-Midterm-Exam-All-Possible-Questions-CIS1051.htm CIS 105 WK 5 Midterm Exam - All Possible Questions Chapter 9 TRUE/FALSE 1. You can have more than one Office program open at once. 2. When you point to a program button on the taskbar, a hangnail of each open window in that program is displayed. 3. The zoom percentage can be adjusted up to 400% in PowerPoint and Word. 4. You will see a vertical scroll bar in some Office program windows if the workspace is wider than the window. 5. You can create, save, and print files from Backstage view. 6. 800 X 600 is lower resolution than 1024 X 768. 7. A dialog box is a window that opens on top of the program window in which you enter or choose settings for performing a task. 8. Contextual tabs are found on task panes. 9. A file name (including descriptive title and extension) can contain up to 255 characters. 10. If you want to move text from one location to another, you first copy it and then paste it in the desired location. MODIFIED TRUE/FALSE 1. Access is used to enter, maintain, and retrieve related information in a format known as a database. _________________________ 2. All Office programs use a(n) status bar, which contains the name of the open file, the program name, the sizing buttons, and the Close button. _________________________ 3. The smallest zoom percentage...
Words: 1255 - Pages: 6
.... . . . . . . . . . . BACKSPACE . . . . . . . . . . . . . CTRL+ESC . . . . . . . . . . . . . . CTRL+ALT+DEL . . . . . . . . . . CTRL+TAB . . . . . . . . . . . . . . CTRL+SHIFT+DRAG . . . . . . . CTRL+DRAG. . . . . . . . . . . . . ESC . . . . . . . . . . . . . . . . . . . SHIFT . . . . . . . . . . . . . . . . . . SHIFT+DRAG . . . . . . . . . . . . SHIFT+F10. . . . . . . . . . . . . . . SHIFT+DELETE. . . . . . . . . . . ALT+underlined letter . . . . Select All Copy Cut Paste Undo Bold Underline Italic Help Rename selected object Find all files Opens file list drop-down in dialogs Refresh current window Shifts focus in Windows Explorer Activates menu bar options Cycles between open applications Quit program, close current window Switch between current program windows Opens properties dialog System menu for current window opens drop-down lists in dialog boxes Switch to parent folder Opens Start menu Opens task manager, reboots the computer Move...
Words: 403 - Pages: 2
...setup c drive, 8000, set d drive for rest in windows setup Mandatory prerequisites Only use the support programs included our 'AIO Software Pak'! Fresh install of Windows 2000/XP/2003 All Service Packs and Patches applied Hard Drive Partition 'C:/' (System) - Min 5 Gigabytes Hard Drive Partition 'D:/' (System) - Min 60 Gigabytes Make SURE the sensor has a Static TCP/IP settings and can get to the Internet Deactivate any Firewall application on the Windows Intrusion Detection System (WinIDS)! The new WinIDS sensor MUST be allowed to see ALL the network traffic. We would strongly suggest that the Microsoft Baseline Security Analyzer (MBSA) is used to identify and correct common security miss configurations and resolve each issue prior to starting this install. Pre-installation Tasks -Make SURE that 'Internet Information Services' has been removed prior to starting this guide. If your unsure, go into the add/remove programs, select 'add/remove windows components', make SURE the 'Internet Information Services' radio box is unselected, if selected, unselect 'Internet Information Services', and remove the application, and all associated components. -Edit hosts file 127.0.0.1 winids Download the 'WinIDS - All In One Software Pak' and extract the contents into the d:\temp folder. Installing the Basic Windows Intrusion Detection System (WinIDS) Install WinPcap Navigate to the d:\temp folder, double left-click on the 'WinPcap...' file, left-click...
Words: 4494 - Pages: 18