Customizing Display Views

Size: px
Start display at page:

Download "Customizing Display Views"

Transcription

1 Customizing Display Views This tutorial describes the process of customizing how search results and browse pages are displayed in CONTENTdm. This documentation is not intended to take the place of having working knowledge of HTML, PHP, or Java Script. Before making changes to any CONTENTdm Web template files, make a backup copy so you can restore the original if needed. Keep in mind that even simple changes could alter the layout of your Web templates. The CONTENTdm Web templates are Unicode compatible. When editing the files, be sure to use an editor that supports UTF-8 encoding. Some text editors, such as Notepad, add a Byte Order Mark to files saved as UTF-8. The Byte Order Mark is not recognized by PHP and alters the layout of the CONTENTdm Web templates. Notepad and other editors that add Byte Order Marks to UTF-8 files should not be used for editing the CONTENTdm Web templates. Learn About: Section I: Section II: Section III: Section IV: Overview Before You Begin Changing View Type Changing Display Views and Values using CQR Creating a Custom Query Pasting Results into browse.php Checking Your Changes Changing the results.php file Section V: Default Viewing Parameters Parameter Names and Values Nicknames Section VI: Editing Default Viewing Parameters Manually Determining Field Nickname Editing browse.php Checking Your Changes Changing the results.php file Section I: Overview When you browse a CONTENTdm collection or view search results, you most likely see the items in your collection in a grid view. Unless you change this view, the grid view displays the Thumbnail, the Title, the Subject, and Description fields. You can change the view from grid to another view by changing the CISOMODE value in the browse.php or the results.php files. The browse.php file contains settings that affect how end users browse your collections. The results.php file settings affect what end users see after performing a search. In addition to changing the CISOMODE value, you can also change the values for the parameters that define 2010 OCLC Page 1 of 17

2 the different views. These parameters include what fields are visible, how much data within the field is visible, which fields link to the item, how many items display on a page, and how the items are sorted. You can use Custom Queries and Results (CQR) to generate code to copy and paste into browse.php and results.php. Customizing these display views in the results.php or browse.php files does not guarantee that this view is what the end user sees. The settings that you edit in these files can be overwritten by using predefined queries created using CQR. Additionally, an end user can overwrite both the default browse and search results displays and those defined by CQR queries by setting Preferences while viewing a CONTENTdm collection. In Preferences, an end user can select view option, sort order, and number of items per page but cannot change what fields are visible, how much data is visible, or which fields link to the item. More information about CQR is available in the Help files at Information about setting preferences is available in the Help files at This tutorial leads you through the process of changing your PHP files to change the default settings for the browse and results pages. The tutorial will cover using Custom Queries and Results to generate code to copy and paste into browse.php and results.php. This tutorial also covers editing your settings manually. Section II: Before You Begin Both the browse.php file and the results.php file are located on the server in the \docs\cdm4 directory. You must have access to these files on the server in order to perform the steps within this tutorial. You must also have access to Collection Administration so that you can identify nicknames. This tutorial involves editing your PHP files. This documentation is not intended to take the place of having working knowledge of HTML, PHP, or Java Script. The customizations added to these pages will change the default settings of the browse.php and results.php file. These default settings can be overwritten by CQR queries and by the settings users define under preferences. This tutorial does not cover changing the preferences page to match your new default display. This is considered advanced customization and is not supported. Before you begin, make backup copies of your browse.php and results.php files so that you can easily change the web pages back to their original state if necessary. Section III: Changing View Type Changing the default view from grid to another type is done by replacing grid (in quotes) in the default viewer parameters with one of the following: bib Default displays title, which is hyperlinked, subject, and description. Does not include a thumbnail image. Default sorts by title. thumb Default displays a thumbnail image and the title. Both are hyperlinked. Default sorts by title. title Default displays title only, which is hyperlinked. Does not include a thumbnail image. Default sorts by title OCLC Page 2 of 17

3 hiera Default sorts and displays on subject and title. Does not include a thumbnail image. The name of the variable to change is CISOMODE. When editing the CISOMODE variable, keep the semicolons and the quotation marks intact. Otherwise, your changes will not appear as expected. To keep the results displays consistent for both browse and search results, make the same changes to your default viewing parameters in both the browse.php and results.php files. When a field is hyperlinked, it is a link to view the item in either the item viewer or the compound object viewer (if it is a compound object). It is easy to make this change directly in your PHP files. Once you have made backup copies, edit the browse.php and results.php files using HTML editing software. If you do not have HTML editing software, open the files in a text editor that supports UTF-8 encoding. In this example, we will edit the browse.php and results.php files, changing the default view type from grid to thumbnail. To change view type: 1. Make backup copies of browse.php and results.php, located in the \docs\cdm4 directory on your server. 2. Open browse.php in an HTML or text editor. 3. In the default viewer parameters section of the file, locate the variable named CISOMODE. This parameter defines the default viewing mode. Read Section V for more information about the default viewing parameters. Figure 1. Locating CISOMODE 4. Locate the word grid next to CISOMODE. Replace the word grid with the word thumb, retaining the surrounding quotes. Other options are title, bib, and hiera, as noted in the comments within the file. 5. Save your changes. 6. Check that the changes you make provide the expected results. To preview your changes, enter the URL of your CONTENTdm server in your Web browser address bar OCLC Page 3 of 17

4 If your changes are not visible, check that you have saved your file. You may need to refresh the Web page or delete your temporary Internet files to remove cached files. To refresh the Web page, press the F5 key. To delete cached files when using Microsoft Internet Explorer, from the Tools menu, select Internet Options. Click Delete Files. A dialog box confirms that you want to delete all files in Temporary Internet Files. Click Yes. When your cached files have been cleared, click OK. Refresh the Web page. 7. If you are satisfied with your changes, close the file. 8. Open results.php and perform steps 3-7. You have now changed the default view to thumbnail. If you wish to change the parameters within the view that you have selected, you must edit the default viewing parameter values, either by using CQR to generate new code, or manually. Section IV: Changing Display Views and Values Using CQR Many users want to change the default display view and sort field after adding a new field to their collection. For instance, if an organization adds a new field to their newspaper collection called Issue Number, they might want to change the grid view, hierarchical view, and bibliographic view to make the new field visible. They may also want to change the sort order so results are sorted on the new issue number. Another reason you might want to change display views and values is to make more fields visible in the grid and bibliographic views. You can change the default display and sort parameters in two different ways: Generating a CQR query and then pasting the resulting code into browse.php and results.php Editing the default viewer parameters in browse.php and results.php directly. This will be covered in Section VI. To avoid errors caused by misplaced punctuation and unknown field nicknames, we recommend using CQR. If you are not familiar with CQR, read Creating Custom Queries and Results at In this tutorial, we will change the default viewing mode from grid to bibliographic. Then, we will change the parameters within the bibliographic view type. With this method, we will create a query using CQR to generate the code string that defines the view. We will copy the query result and paste it into browse.php. Once we check our changes, we will save them. Then, we will paste the same portion into results.php. Step 1: Creating a Custom Query This step will walk you through creating a query. For this tutorial, we are going to change the view from grid to bibliographic, and we are going to add a field to the list of visible fields. 1. Navigate to the CQR by typing the following URL in your Web browser address bar: OCLC Page 4 of 17

5 Figure 2. Select Query Type 2. Select Generate the default view parameters for the browse or results page. 3. Click Next. The Results View page displays. What we choose will produce the code needed for changing the default viewing parameters OCLC Page 5 of 17

6 Figure 3. Define Results View 4. Change the following on the Results View page: In Select the default viewing mode: Select Bibliographic. In Configure the bibliographic view: For Field 4, select Format from the drop-down list. For Field 4 Display Options, select Show entire field from the drop-down list. For Field 4 Separator, select New Line from the drop-down list. Do not check Link to Item. In Choose sort order: For Priority 2, select Subject from the drop-down list. Note: The Relevancy sort option only applies to the Results View page OCLC Page 6 of 17

7 In Define compound object results display: Choose Only show full compound object within search results. Note: The compound object option only applies to the results page. 5. Select Next. The Finish page is shown. Figure 4. CQR Results Step 2: Pasting Results into browse.php In this step, copy the results in the text box on the Finish CQR page and then paste it into browse.php. 1. Copy the code from the text box of the CQR page. Many Web browser support Ctrl C as a shortcut. 2. Navigate to \server\docs\cdm4 and make backup copies of browse.php and results.php if you have not already done so. 3. Open browse.php. 4. Find the default viewer parameters within the file. There are comments above and below the parameters that indicate their location OCLC Page 7 of 17

8 Figure 5. browse.php File 5. Highlight and delete the default viewer parameters. 6. Paste the section that you copied from the Web page into browse.php. 7. Save browse.php. Note: The CQR finish page adds a command to suppress compound objects in search results. This code does not change the functionality of the browse.php page. If desired, you can remove this code from the file. Step 3: Checking Your Changes Before you close your file, check your changes to make sure that this new view is what you want. To preview your changes, enter the URL of your CONTENTdm server in your Web browser address bar and navigate to the Browse page OCLC Page 8 of 17

9 Figure 6. Check the Browse page within your Web browser If your changes are not visible, you may need to refresh the Web page or delete your temporary Internet files to remove cached files. To refresh the Web page, press the F5 key. If your changes are not visible, check that you have saved your file. You may need to refresh the Web page or delete your temporary Internet files to remove cached files. To refresh the Web page, press the F5 key. To delete cached files when using Microsoft Internet Explorer, from the Tools menu, select Internet Options. Click Delete Files. A dialog box confirms that you want to delete all files in Temporary Internet Files. Click Yes. When your cached files have been cleared, click OK. Refresh the Web page. If you are satisfied with your changes, close the file. You have now successfully changed the browse.php file. Step 4: Changing the results.php File Once you have successfully changed the browse.php file, you are now ready to change the results.php file. At this point, you still have the finish page of Custom Queries and Results open and you have made a back up copy of your results.php file. 1. Copy the code from the CQR text box. (If you know that you have the default parameters in the clipboard, you can skip this step.) 2. Navigate to \server\docs\cdm4 and make backup copies of results.php if you have not already done so. 3. Open results.php. 4. Find the default viewer parameters within the file. There are comments above and below the parameters that indicate their location. 5. Highlight and delete the default viewer parameters. 6. Paste the section that you copied from the Web page into results.php. 7. Save results.php OCLC Page 9 of 17

10 Check your work as before. After entering the URL of your CONTENTdm server in your Web browser address bar, perform a search. If your changes were successful, you will see all results in a bibliographic view. Section V: Default Viewing Parameters This section provides you with information about the default viewing parameters in case you wish to edit your files without using Custom Query and Results. The default viewer parameters appear in both the browse.php and results.php files. They are in the format of: define("parameter name", "variable value"); //comments The results and the browse.php files have almost identical default viewer parameters. However the parameter CISOSUPPRESS, shown below, has no effect within the browse.php file since individual pages of compound objects are automatically suppressed in browse mode. Also, three of the parameters in results.php contain sorting by relevancy. Figure 7. Default Viewer Parameters Parameter Names and Values The table below explains the default viewer parameter values. The first three parameters define results, viewer, and default viewing formats. The final five define the views. By editing the parameter options that define the views, you can change the number of items displayed per results page and the sort order. For the grid view and the bibliographic view, you can choose which fields to display, whether displayed fields are hyperlinked to the viewer, and how much content of a field is shown. When editing these views, keep in mind that the end user can change the view type, number of items per page and sort order in Preferences. The end user does not have the ability to change what fields are visible, except in the hierarchical view. For the hierarchical view, the fields displayed and the sort order are the same. CONTENTdm supports the ability to view up to 100 items per results page. Parameter Name CISORESTMP Explanation Defines which file is used to display search results. If you wish, you can create a custom results page for each collection. For information on how to customize multiple collections, read Customizing Multiple Collections at OCLC Page 10 of 17

11 Parameter Name Explanation The default parameters are: define (DEF_CISORESTMP, results.php ); CISOVIEWTMP Defines which file is used to display items. If you wish, you can create a custom item viewer for each collection. For information on how to customize multiple collections read Customizing Multiple Collections at The default parameters are: define (DEF_CISOVIEWTMP, item_viewer.php ); CISOMODE Defines the default viewing mode. Changing this value in browse.php changes the default viewing mode when browsing. Changing this value in results.php changes the default viewing mode for search results. Choose from the following values shown commented in the code: grid, title, thumb, bib; hiera. The default parameters are: define("def_cisomode", "grid"); //grid; title; thumb; bib; hiera The following parameters define what is displayed for the viewing modes. If you have changed the default viewing mode in CISOMODE, confirm that it displays as you wish. Also, check the values of the other modes, especially the fields that are visible in the grid and bibliographic views. Changing these values does not affect what the end user sees on the preferences page. Parameter Name DEF_CISOGRID Explanation The grid view shows the items separated by a rule, with information about each item (the fields) in columns. Column headings contain the field names. Up to five fields can be viewed or four fields and a thumbnail image. Parameter values are: fieldnickname1,a,b;fieldnickname2,a,b;fieldnickname3,a,b;fieldnickname4,a,b; fieldnickname5,a,b; number of items per page;c,d,e,f,g where: fieldnickname is the nickname of the field. a is how much of the metadata within the field is shown. (A = all of the metadata is shown, K = show search keywords in context. Or, indicate the number of characters to show: 20, 40, 60, 80, 100 or 200.) b determines if the field is hyperlinked to the item viewer (1 = the field will be hyperlinked to the viewer, 0 = the field will not be hyperlinked to the viewer.) number of items per page is a numeric value that defines the number of items displayed per page (10, 20, 30, 40, 50, 60, 70, 80, 90 or 100). and c,d,e,f,g (except when relevancy is used in the first position in results.php), this shows field nicknames in the desired sort order. If you do not want to view 2010 OCLC Page 11 of 17

12 Parameter Name Explanation or sort on all five fields, use none instead of a field name. The default parameters are: define("def_cisogrid", "thumbnail,a,1;title,a,1;subjec,a,0;descri,200,0;none,a,0;20;relevancy,none,n one,none,none"); In the default grid view, the thumbnail will be shown on the left, followed by the Title, Subject, and Description fields. The Thumbnail and the Title fields are hyperlinked to the item viewer. The Description and Title field are not. The entire Title and Subject fields are shown. Up to 200 characters of the Description field will be displayed. There will be 20 items on each page. The items will be sorted by title only. CISOBIB The biblographic view displays text from up to five fields without thumbnails. Each item is separated by a rule. Choose whether the fields describing the item are separated by new line, comma, period or space. Choose up to five fields to use to sort the items. Parameter values are: fieldnickname1,a,b,c;fieldnickname2,a,b,c;fieldnickname3,a,b,c; fieldnickname4,a,b,c;fieldnickname5,a,b,c; number of items per page; d,e,f,g,h where fieldnickname is the nickname of the field. a is how much of the metadata within the field is shown. (A = all of the metadata is shown, K = show search keywords in context. Or, indicate the number of characters to show: 20, 40, 60, 80, 100 or 200.) b determines if the field is hyperlinked to the item viewer (1 = the field will be hyperlinked to the viewer, 0 = the field will not be hyperlinked to the viewer.) c determines how the different fields are separated (N = new line, C = comma, P = period, S = space). number of items per page is a numeric value that defines the number of items displayed per page (10, 20, 30, 40, 50, 60, 70, 80, 90 or 100). and d,e,f,g,h are field names in the desired sort order. and c,d,e,f,g (except when relevancy is used in the first position in results.php), this shows field nicknames in the desired sort order. If you do not want to view or sort on all five fields use none instead of a field name The default parameters are: define("def_cisobib","title,a,1,n;subjec,a,0,n;descri,200,0,n;none,a,0,n;non e,a,0,n;20;relevancy,none,none,none,none") In the default bibliographic view, the entire Title and Subject fields are shown, followed by the Description field. The title is hyperlinked to the item viewer. Up to 200 characters of the Description field will be displayed. The items will be sorted by title only. CISOTHUMB In the thumbnail view, the Title field is displayed along with a Thumbnail image in columns and rows. Both the Thumbnail and Title field are automatically 2010 OCLC Page 12 of 17

13 Parameter Name Explanation hyperlinked to the viewer. Parameter values are: number of items per page (number of columns x number of rows); a,b,c,d,e where number of items per page is a numeric value that defines the number of items displayed per page (10, 12, 15, 16, 20 (4x5), 20 (5x4), 24, 25, 28, 30, 32, 35, 36, 40 (4x5), 40 (5x4), 50, 60 (4x5), 60 (5x4), 70, 80 (4x5), 80 (5x4), 90, 100 (4x5) or 100 (5x4)). Numbers that are divisible by both 4 and 5 require you to select whether want your items displayed 4 items across or 5 items across. and c,d,e,f,g (except when relevancy is used in the first position in results.php), this shows field nicknames in the desired sort order. If you do not want to sort on all five fields, use none instead of a field name. The default parameters are: define ( DEF_CISOTHUMB, 20 (4x5); relevancy, none,none,none,none ); In the default thumbnail view, up to 20 items are displayed on a page. The Thumbnail and Title fields are hyperlinked to the item viewer. The items will be sorted by title only. CISOTITLE In the title view, only the titles of the images are displayed. Parameter values are: number of items per page; a,b,c,d,e where number of items per page is a numeric value that defines the number of items displayed per page (10, 20, 30, 40, 50, 60, 70, 80, 90 or 100). a,b,c,d,e are field names in the desired sort order. If you do not want to sort on all five fields, use none instead of a field name. The default parameters are: define("def_cisotitle", "20;title,none,none,none,none"); In the default title view, the items will be sorted by title only. Up to 20 items are displayed on a page. CISOHIERA In the hierarchical view, the items are sorted and displayed by the fields that you select. The field titles are arranged in rows across the page. A separate entry for each field is provided on each row. Parameter values are: number of items per page; a,b,c,d,e where number of items per page is a numeric value that defines the number of items displayed per page (10, 20, 30, 40, 50, 60, 70, 80, 90 or 100). a,b,c,d,e are field names in the desired view and sort order. If you do not want to view and sort on all five fields, use none instead of a field names. The default parameters are: define("def_cisohiera", "20;subjec,title,none,none,none"); 2010 OCLC Page 13 of 17

14 Parameter Name CISOSUPPRESS Explanation In the default hierarchical view, the items are sorted by the Subject field and then by the Title field. The Subject and Title fields are the only fields that will be shown. Up to 20 items are displayed on a page. This parameter suppresses pages in compound objects in search results. The two values you can choose are: 0 or 1. 0 = Do not suppress compound object pages within search results. This means that the individual pages that make up the compound object will display in search results as well as the compound object itself. 1 = Suppress compound object pages within search results. The individual pages that make up the compound object will not display in search results. Only the compound object will display. Nicknames As shown in the variable name and value table, you must know the field nickname if you edit values for some of the default viewer parameters. Enter field nicknames to specify viewing and sorting information. If you use CQR (the recommended method) to change the default viewing parameters, you won t need to determine field nicknames. If you do not use CQR and choose to alter the default viewing parameters code directly, taking care to keep quotations, semicolon, and commas intact, you must determine field nicknames. Note that CONTENTdm uses field nicknames when searching or browsing within a single collection. Dublin Core Mapping is used when searching across multiple collections. To determine field nicknames: 1. Open CONTENTdm Administration using your Project Client or by navigating to: 2. Enter your user name and password if prompted. 3. Click the Collections tab. Then, click Fields to arrive at the field properties page. 4. On the Field Properties page, click Edit in the row of the field for which you wish to find the field. The Edit Field page opens. 5. Check the URL of the page. The field nickname, is after the parameter CISONICK OCLC Page 14 of 17

15 Figure 8. Nickname in URL Note: If your status bar is active in your Web browser, you can also see the field nickname by hovering over the edit link in all field rows on the Field Properties page. Figure 9. Nickname in Status bar Section VI: Editing Default Viewing Parameters Manually Now we will make the same changes to the browse.php and results.php files without using code generated by CQR, using an unedited copy of your browse and results files. This requires that you edit, with Web editing software or a text editor, the browse.php and results.php files. Before we begin, confirm that you have a back up copy of both files. If you have edited the files, as in the previous section, ensure that you retain unedited copies of the files. This may require that you make additional copies of the unedited files. In this example, we will: Change default view to bibliographic. Add the Format field to the view, separated by a new line. Add an additional field to the sort options. We will apply these changes to both results.php and browse.php. The general steps are: 1. Determine field nickname for the field that we are adding to the bibliographic view. 2. Edit the browse.php file. 3. Check your changes. 4. Edit the results.php file OCLC Page 15 of 17

16 Step 1: Determining Field Nickname In order to add another field to any default viewer parameters, we must know the field nickname. We are going to go to Collection Administration to determine field nickname. 1. Open CONTENTdm Administration. Do this by navigating to: 2. Enter your user name and password if prompted. 3. Click the Collections tab. Then, click Fields to arrive at the Field Properties page. 4. In the Field Properties page, find the Format field. 5. Click Edit for that field. The Edit Field page opens. 6. Check the URL of the page. The field nickname, after the parameter CISONICK, is format. Figure 10. Format nickname Step 2: Editing browse.php Now that we know the nickname, we are ready to edit the browse.php file. In this step, open the browse.php file and edit the values to reflect the changes that we wish to make: 1. Navigate to \server\docs\cdm4 and make copies of browse.php and results.php. 2. Open browse.php using Web editing software or a text editor. 3. Find CISOMODE in the browse.php file. Change grid to bib. This changes the default view to bibliographic. The following shows the change to DEF_CISOMODE. Figure 11. Changing CISOMODE 4. Now find CISOBIB. Make the following changes to the fourth field in the view parameters. Find the fourth field, currently set at none, and change to format. Keep the A, as we want to show all fields OCLC Page 16 of 17

17 Keep the 0, as we do not want this term hyperlinked to the viewer. Keep the N, as we want this field separated with a new line. 5. Make the following changes to the sort view: Find the second value, currently set at none, and change it to subjec. This is the field nickname. 6. Save browse.php. Step 3: Checking Your Changes Before you close your file, check your changes to make sure that this new view is what you want to display. To preview your changes, enter the URL of your CONTENTdm server in your Web browser address bar. If your changes are not visible, you may need to refresh the Web page or delete your temporary Internet files to remove cached files, as shown in the previous section. To refresh the Web page, press the F5 key. Step 4: Changing the results.php File Once you have successfully changed the browse.php file, you are now ready to change the results.php file. At this point, you ve made a copy of your results.php file. 1. Open results.php using Web editing software or a text editor. 2. Find CISOMODE in the results.php file. Change grid to bib. This changes the default view to bibliographic. Now we are ready to make the change to the CISOBIB values. 3. Find CISOBIB. Make the following changes to the fourth field in the view parameters. Find the fourth field, currently set at none, and change to format. Keep the A, as we want to show all fields. Keep the 0, as we do not want this term hyperlinked to the viewer. Keep the N, as we want this field separated with a new line. 4. Make the following changes to the sort view: Find the first value, currently set at relevancy, and change it to title. This is the field nickname. 5. Save results.php. Check your changes in this file, exactly as you did in Step 3. You have now successfully changed both the results and browse pages to bibliographic view. Follow these general steps to make other changes to these files. If you want to revert back to the default values, rename your existing edited PHP files to something other than browse.php or results.php (such as editedbrowse.php or editedbrowse.php). Then, rename the copies that you made of browse.php and results.php files back to browse.php and results.php OCLC Page 17 of 17

Editing the Web Template Files

Editing the Web Template Files Editing the Web Template Files This tutorial describes the process of editing the PHP files to make global changes to the layout, color, font, and text within the CONTENTdm Web templates. This documentation

More information

Using PDF Files in CONTENTdm

Using PDF Files in CONTENTdm Using PDF Files in CONTENTdm CONTENTdm uses the Adobe PDF Library to provide features for efficient processing of born-digital documents in Portable Document Format (PDF). PDF files and PDF compound objects

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS Last Edited: 2012-07-09 1 Navigate the document interface... 4 Create and Name a new document... 5 Create a new Google document... 5 Name Google documents...

More information

OpenIMS 4.2. Document Management Server. User manual

OpenIMS 4.2. Document Management Server. User manual OpenIMS 4.2 Document Management Server User manual OpenSesame ICT BV Index 1 INTRODUCTION...4 1.1 Client specifications...4 2 INTRODUCTION OPENIMS DMS...5 2.1 Login...5 2.2 Language choice...5 3 OPENIMS

More information

Shasta College SharePoint Tutorial. Create an HTML Form

Shasta College SharePoint Tutorial. Create an HTML Form Create an HTML Form SharePoint HTML forms are based on Lists. Lists are like mini-databases inside of SharePoint that define the form s fields and stores the data submitted from the form. Before you can

More information

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand

More information

Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes)

Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes) Creating Compound Objects (Documents, Monographs Postcards, and Picture Cubes) A compound object is two or more files bound together with a CONTENTdm-created XML structure. When you create and add compound

More information

Using an Edline Gradebook. EGP Teacher Guide

Using an Edline Gradebook. EGP Teacher Guide Using an Edline Gradebook EGP Teacher Guide Table of Contents Introduction...3 Setup...3 Get the Gradebook Web Plugin... 3 Using Your Web Gradebook... 4 Using the Web Gradebook on a Shared Computer...

More information

Bitrix Site Manager 4.1. User Guide

Bitrix Site Manager 4.1. User Guide Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing

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

Using the SAS Enterprise Guide (Version 4.2)

Using the SAS Enterprise Guide (Version 4.2) 2011-2012 Using the SAS Enterprise Guide (Version 4.2) Table of Contents Overview of the User Interface... 1 Navigating the Initial Contents of the Workspace... 3 Useful Pull-Down Menus... 3 Working with

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

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013)

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) This guide was created to allow agencies to set up the e-data Tech Support project s Microsoft Access template. The steps below have been

More information

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Backup Assistant User Guide NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Liability Disclaimer NEC Unified Solutions, Inc. reserves the right to change the specifications, functions,

More information

Introduction to Word 2007

Introduction to Word 2007 Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming

More information

General Product Questions... 3. Q. What is the Bell Personal Vault Vault?...4. Q. What is Bell Personal Vault Backup Manager?...4

General Product Questions... 3. Q. What is the Bell Personal Vault Vault?...4. Q. What is Bell Personal Vault Backup Manager?...4 Frequently Asked Questions to be posted at: /faqs/ Table of Contents General Product Questions... 3 Q. What is the Bell Personal Vault Vault?...4 Q. What is Bell Personal Vault Backup Manager?...4 Q. What

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

1. Application Overview... 3. 2. System Requirements... 3. 3. Installation... 3. 4. Splash Screen... 4. 5. Registration Screen...

1. Application Overview... 3. 2. System Requirements... 3. 3. Installation... 3. 4. Splash Screen... 4. 5. Registration Screen... 1 P a g e Table of Contents 1. Application Overview... 3 2. System Requirements... 3 3. Installation... 3 4. Splash Screen... 4 5. Registration Screen... 5 5.1 Registration... 5 6. Login Screen... 7 6.1

More information

Kentico CMS User s Guide 5.0

Kentico CMS User s Guide 5.0 Kentico CMS User s Guide 5.0 2 Kentico CMS User s Guide 5.0 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Importing from Tab-Delimited Files

Importing from Tab-Delimited Files January 25, 2012 Importing from Tab-Delimited Files Tab-delimited text files are an easy way to import metadata for multiple files. (For more general information about using and troubleshooting tab-delimited

More information

OUTLOOK WEB APP (OWA): MAIL

OUTLOOK WEB APP (OWA): MAIL Office 365 Navigation Pane: Navigating in Office 365 Click the App Launcher and then choose the application (i.e. Outlook, Calendar, People, etc.). To modify your personal account settings, click the Logon

More information

IP Phone Services Configuration

IP Phone Services Configuration CHAPTER 96 Using Cisco Unified Communications Manager Administration, you define and maintain the list of IP phone services to which users can subscribe at their site. IP phone services comprise XML applications

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

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

Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane

Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Outlook Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Composing & Sending Email Reading & Sending Mail Messages Set message options Organizing Items

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Fairfield University Using Xythos for File Sharing

Fairfield University Using Xythos for File Sharing Fairfield University Using Xythos for File Sharing Version 7.0 Table of Contents I: Manage your Department Folder...2 Your Department Folder... 2 II: Sharing Folders and Files Inside of Fairfield U...3

More information

Getting Started The Windows SharePoint Services Window

Getting Started The Windows SharePoint Services Window QUICK Source Microsoft Windows SharePoint Services 3.0 for Windows Server 2003 Getting Started The Windows SharePoint Services Window Browser Toolbars - allow the user to navigate in the browser. Link

More information

About SharePoint Server 2007 My Sites

About SharePoint Server 2007 My Sites SharePoint How To s / My Sites of 6 About SharePoint Server 007 My Sites Use your My Site to store files and collaborate with your co-workers online. My Sites have public and private pages. Use your public

More information

IMPORTING AND EXPORTING CERTIFICATES IN IE AND FIREFOX FOR BPIA AND PRACS

IMPORTING AND EXPORTING CERTIFICATES IN IE AND FIREFOX FOR BPIA AND PRACS IMPORTING AND EXPORTING CERTIFICATES IN IE AND FIREFOX FOR BPIA AND PRACS Exporting a certificate is useful for keeping a backup copy of your certificate or for importing it to another browser (either

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL

More information

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. Evaluator s Guide PC-Duo Enterprise HelpDesk v5.0 Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. All third-party trademarks are the property of their respective owners.

More information

Colligo Email Manager 6.2. Offline Mode - User Guide

Colligo Email Manager 6.2. Offline Mode - User Guide 6.2 Offline Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 3 Checking for Updates 4 Updating Your License

More information

Nintex Workflow for Project Server 2010 Help

Nintex Workflow for Project Server 2010 Help Nintex Workflow for Project Server 2010 Help Last updated: Friday, March 16, 2012 1 Using Nintex Workflow for Project Server 2010 1.1 Administration and Management 1.2 Associating a Project Server Workflow

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd support@vpasp.com www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT

More information

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring 7 th Annual LiveText Collaboration Conference Advanced Document Authoring Page of S. La Grange Road, nd Floor, La Grange, IL 6055-455 -866-LiveText (-866-548-3839) edu-solutions@livetext.com Page 3 of

More information

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to

More information

Adobe Conversion Settings in Word. Section 508: Why comply?

Adobe Conversion Settings in Word. Section 508: Why comply? It s the right thing to do: Adobe Conversion Settings in Word Section 508: Why comply? 11,400,000 people have visual conditions not correctible by glasses. 6,400,000 new cases of eye disease occur each

More information

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

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

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7

Subscribe to RSS in Outlook 2007. Find RSS Feeds. Exchange Outlook 2007 How To s / RSS Feeds 1of 7 Exchange Outlook 007 How To s / RSS Feeds of 7 RSS (Really Simple Syndication) is a method of publishing and distributing content on the Web. When you subscribe to an RSS feed also known as a news feed

More information

DocumentsCorePack for MS CRM 2011 Implementation Guide

DocumentsCorePack for MS CRM 2011 Implementation Guide DocumentsCorePack for MS CRM 2011 Implementation Guide Version 5.0 Implementation Guide (How to install/uninstall) The content of this document is subject to change without notice. Microsoft and Microsoft

More information

Mastering Mail Merge. 2 Parts to a Mail Merge. Mail Merge Mailings Ribbon. Mailings Create Envelopes or Labels

Mastering Mail Merge. 2 Parts to a Mail Merge. Mail Merge Mailings Ribbon. Mailings Create Envelopes or Labels 2 Parts to a Mail Merge 1. MS Word Document (Letter, Labels, Envelope, Name Badge, etc) 2. Data Source Excel Spreadsheet Access Database / query Other databases (SQL Server / Oracle) Type in New List Mail

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

MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros.

MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. MS WORD 2007 (PC) Macros and Track Changes Please note the latest Macintosh version of MS Word does not have Macros. Record a macro 1. On the Developer tab, in the Code group, click Record Macro. 2. In

More information

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual

CMS Training Manual. A brief overview of your website s content management system (CMS) with screenshots. CMS Manual Training A brief overview of your website s content management system () with screenshots. 1 Contents Logging In:...3 Dashboard:...4 Page List / Search Filter:...5 Common Icons:...6 Adding a New Page:...7

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

HDAccess Administrators User Manual. Help Desk Authority 9.0

HDAccess Administrators User Manual. Help Desk Authority 9.0 HDAccess Administrators User Manual Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks

More information

No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you, support@elmcomputers.

No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you, support@elmcomputers. This list of shortcut key combinations for Microsoft Windows is provided by ELM Computer Systems Inc. and is compiled from information found in various trade journals and internet sites. We cannot guarantee

More information

Kentico CMS 5.5 User s Guide

Kentico CMS 5.5 User s Guide Kentico CMS 5.5 User s Guide 2 Kentico CMS User s Guide 5.5 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Previewing & Publishing

Previewing & Publishing Getting Started 1 Having gone to some trouble to make a site even simple sites take a certain amount of time and effort it s time to publish to the Internet. In this tutorial we will show you how to: Use

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

This handout, along with additional supporting Outlook handouts, and other information can be found at www.med.wayne.edu/msis/somputing/email.

This handout, along with additional supporting Outlook handouts, and other information can be found at www.med.wayne.edu/msis/somputing/email. Outlook Web Access Introduction Users who are away from their computers, as well as users who share a computer, can take advantage of Outlook Web Access to access your account on SOM's Exchange Server

More information

Live Text at Centenary College Quick Tips Guide

Live Text at Centenary College Quick Tips Guide Live Text at Centenary College Quick Tips Guide Please read all the information on this page. LiveText can help you create and maintain a digital portfolio of all the assignments and teaching materials

More information

What s New in Version 10 Details for Web Essentials

What s New in Version 10 Details for Web Essentials What s New in Version 10 Details for Web Essentials TABLE OF CONTENTS Overview... 3 Dashboard Module... 3 General Changes... 3 New Proposal... 3 Create Proposal in Word... 5 Create New Proposal in Excel...

More information

Getting Started with Tableau Server 6.1

Getting Started with Tableau Server 6.1 Getting Started with Tableau Server 6.1 Welcome to Tableau Server. This guide will walk you through the basic steps to install and configure Tableau Server. Then follow along using sample data and users

More information

User s Guide for the Texas Assessment Management System

User s Guide for the Texas Assessment Management System User s Guide for the Texas Assessment Management System Version 8.3 Have a question? Contact Pearson s Austin Operations Center. Call 800-627-0225 for technical support Monday Friday, 7:30 am 5:30 pm (CT),

More information

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com User s Guide Kentico CMS 7.0 1 www.kentico.com Table of Contents Introduction... 4 Kentico CMS overview... 4 Signing in... 4 User interface overview... 6 Managing my profile... 8 Changing my e-mail and

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium 2016 (with or without Premium Billing) With Microsoft SQL Server Reporting Services, use Report Builder to generate and author

More information

Access Tutorial 1 Creating a Database

Access Tutorial 1 Creating a Database Access Tutorial 1 Creating a Database Microsoft Office 2013 Objectives Session 1.1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage view Create

More information

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail.

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail. Create a mail or e-mail merge Use mail or e-mail merge when you want to create a large number of documents that are mostly identical but include some unique information. For example, you can use mail merge

More information

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy

USER GUIDE. Unit 2: Synergy. Chapter 2: Using Schoolwires Synergy USER GUIDE Unit 2: Synergy Chapter 2: Using Schoolwires Synergy Schoolwires Synergy & Assist Version 2.0 TABLE OF CONTENTS Introductions... 1 Audience... 1 Objectives... 1 Before You Begin... 1 Getting

More information

Introduction to dobe Acrobat XI Pro

Introduction to dobe Acrobat XI Pro Introduction to dobe Acrobat XI Pro Introduction to Adobe Acrobat XI Pro is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view a copy of this

More information

Publishing with Adobe Presenter 10 (Detailed)

Publishing with Adobe Presenter 10 (Detailed) Publishing with Adobe Presenter 10 (Detailed) Open PowerPoint Find PowerPoint and open it by clicking its icon. The PowerPoint icon may be found in one of the following locations: 1. Desktop 2. Start Menu

More information

Contents. Using Web Access... 1. Managing Shared Folders... 28. Managing Account Settings... 36. Index... 39

Contents. Using Web Access... 1. Managing Shared Folders... 28. Managing Account Settings... 36. Index... 39 Contents Using Web Access... 1 Using the Sign In Page... 1 Signing In to Seagate Global Access... 2 Creating a Seagate Global Access Account... 2 If You Forget Your Password... 5 Viewing Central Axis Details...

More information

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE

Pharmacy Affairs Branch. Website Database Downloads PUBLIC ACCESS GUIDE Pharmacy Affairs Branch Website Database Downloads PUBLIC ACCESS GUIDE From this site, you may download entity data, contracted pharmacy data or manufacturer data. The steps to download any of the three

More information

Access 2010: The Navigation Pane

Access 2010: The Navigation Pane Access 2010: The Navigation Pane Table of Contents OVERVIEW... 1 BEFORE YOU BEGIN... 2 ADJUSTING THE NAVIGATION PANE... 3 USING DATABASE OBJECTS... 3 CUSTOMIZE THE NAVIGATION PANE... 3 DISPLAY AND SORT

More information

DocuShare User Guide

DocuShare User Guide DocuShare User Guide Publication date: April 2011 This document supports DocuShare Release 6.6.1 Prepared by: erox Corporation DocuShare Business Unit 3400 Hillview Avenue Palo Alto, California 94304 USA

More information

Microsoft Migrating to Access 2010 from Access 2003

Microsoft Migrating to Access 2010 from Access 2003 In This Guide Microsoft Access 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 Access 2010 training,

More information

MS Excel Template Building and Mapping for Neat 5

MS Excel Template Building and Mapping for Neat 5 MS Excel Template Building and Mapping for Neat 5 Neat 5 provides the opportunity to export data directly from the Neat 5 program to an Excel template, entering in column information using receipts saved

More information

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

WINDOWS 7 EXPLORE INTERNET EXPLORER 8

WINDOWS 7 EXPLORE INTERNET EXPLORER 8 WINDOWS 7 EXPLORE INTERNET EXPLORER 8 Windows 7 Explore Internet Explorer 8 Last Edited: 2012-07-10 1 Explore changes in the UI... 3 Enhance with built-in Search engine... 3 Manage and Organize IE with

More information

Work with the MiniBase App

Work with the MiniBase App Work with the MiniBase App Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc. All other

More information

Website Creator Pro Quick Reference Guide. Version: 0.5

Website Creator Pro Quick Reference Guide. Version: 0.5 Website Creator Pro Quick Reference Guide Version: 0.5 Contents 1. Introduction 3 2. Navigation 4 2.1. Top Bar 4 2.1.1. Tabs 4 2.1.2. Buttons 4 2.2. Website Structure Fly-Out 4 3. Usage 5 3.1. Editor 5

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

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Help. F-Secure Online Backup

Help. F-Secure Online Backup Help F-Secure Online Backup F-Secure Online Backup Help... 3 Introduction... 3 What is F-Secure Online Backup?... 3 How does the program work?... 3 Using the service for the first time... 3 Activating

More information

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame...

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame... Using Microsoft Office 2003 Introduction to FrontPage Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Fall 2005 Contents Launching FrontPage... 3 Working with

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

Logi Ad Hoc Management Console Usage Guide

Logi Ad Hoc Management Console Usage Guide Logi Ad Hoc Management Console Usage Guide Version 11.2 Last Updated: March 2014 Page 2 Table of Contents Introduction... 5 Document Overview... 5 Target Audience... 7 System Requirements... 8 Components...

More information

Customer admin guide. UC Management Centre

Customer admin guide. UC Management Centre Customer admin guide UC Management Centre June 2013 Contents 1. Introduction 1.1 Logging into the UC Management Centre 1.2 Language Options 1.3 Navigating Around the UC Management Centre 4 4 5 5 2. Customers

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 1 Creating a Database Microsoft Office 2010 Objectives Learn basic database concepts and terms Explore the Microsoft Access window and Backstage view Create a blank database Create and

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)

More information

How to Back Up and Restore an ACT! Database Answer ID 19211

How to Back Up and Restore an ACT! Database Answer ID 19211 How to Back Up and Restore an ACT! Database Answer ID 19211 Please note: Answer ID documents referenced in this article can be located at: http://www.act.com/support/index.cfm (Knowledge base link). The

More information

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Excel Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

More information

SharePoint 2007 Get started User Guide. Team Sites

SharePoint 2007 Get started User Guide. Team Sites SharePoint 2007 Get started User Guide Team Sites Contents 1. Overview... 2 1.1 What is SharePoint?... 2 1.2 What is a SharePoint Team Site?... 2 1.3 SharePoint user permissions... 2 2. Team Site features...

More information

Manual English KOI Desktop App 2.0.x

Manual English KOI Desktop App 2.0.x Manual English KOI Desktop App 2.0.x KOI Kommunikation, Organisation, Information Comm-Unity EDV GmbH 2010 Contents Introduction... 3 Information on how to use the documentation... 3 System requirements:...

More information

Help File. Version 1.1.4.0 February, 2010. MetaDigger for PC

Help File. Version 1.1.4.0 February, 2010. MetaDigger for PC Help File Version 1.1.4.0 February, 2010 MetaDigger for PC How to Use the Sound Ideas MetaDigger for PC Program: The Sound Ideas MetaDigger for PC program will help you find and work with digital sound

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

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

Getting Started Guide

Getting Started Guide Getting Started Guide Mulberry Internet Email/Calendar Client Version 4.0 Cyrus Daboo Pittsburgh PA USA mailto:mulberry@mulberrymail.com http://www.mulberrymail.com/ Information in this document is subject

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

Training Manual. Version 6

Training Manual. Version 6 Training Manual TABLE OF CONTENTS A. E-MAIL... 4 A.1 INBOX... 8 A.1.1 Create New Message... 8 A.1.1.1 Add Attachments to an E-mail Message... 11 A.1.1.2 Insert Picture into an E-mail Message... 12 A.1.1.3

More information