Installation & User Guide

Size: px
Start display at page:

Download "Installation & User Guide"

Transcription

1 SharePoint List Menu Editor Installation & User Guide

2 Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters P.O. Box #38514 North York, Ontario M2K 2Y5 Canada Web site: Sales Telephone: +1- (412)

3 Table of Contents Introduction...4 Overview 5 Key Features & Benefits 7 Installation...8 Software prerequisites 8 Installation Procedure 8 Post Installation 9 Component Activation...10 Administrator Guide...12 Adding a new menu item 12 Using Menu Templates 20 FAQ...22 What exactly does KWizCom SharePoint List Menu Editor do? 22 Do I have to install anything on my company's client-pcs? 22 How do I retrieve a list field values and use it on my menu definition script? 22 Version Release Notes...23 New Added Features 23 This Version's Known Issues/Limitations 23 Technical Support

4 Introduction KWizCom SharePoint List Menu Editor is an MS SharePoint web part that enables adding custom menu items to any list or document library item. This document provides all the information needed to install, evaluate and deploy this KWizCom product: Product overview Installation guide Component activation Administrator guide FAQ Version release notes 4

5 Overview All SharePoint lists have the same drop-down menus, regardless of the lists' type: KWizCom SharePoint List Menu Editor enables SharePoint administrators to add new custom menu items to every required list. These new menu items are managed in a web part scope; this gives the SharePoint administrator the ability to decide to which list to add new custom menus, and on which web part pages these new menu items will be visible. The following example displays 2 new menu items added to a "Meeting Summaries" document library: Send Link by Opens Microsoft Outlook dialog and adds the document as a link. Send Document Properties by Opens Microsoft Outlook dialog and fills the document's properties valudes in the message's body. 5

6 2 custom menus items So, how does it work? In order to add menu items to a certain list/document library, you have to add the SharePoint List Menu Editor to the page. This web part is visible only when the page is in design mode. SharePoint List Menu Editor web part displays javascript editor, that enables you to add new menu items to a specific web part, displaying some SharePoint list. Each time you add a new menu item, a new javascript function is created. You can then change/edit this function anyway you want. Once you turn the page to view mode, the SharePoint List Menu Editor web part will become invisible, and the web part to which it was connected will show the new custom menu items. For detailed instruction, please review the Administrator Guide chapter on this document. 6

7 Key Features & Benefits Enables adding custom menu items to every required list or document library. Enables displaying different menu items for different users, on the same list by defining the custom menu items on a web part level. Custom menu items are defined using script language (javascript) requires no re-compilation etc. Enables saving menu items as templates. These templates can then be used again in other lists/document libraries. No client installation needed easy & fast deployment Multi-lingual (standard for all KWizCom components) 7

8 Installation Software prerequisites Server Requirements 1. Microsoft Windows SharePoint Services (WSS) SP1/SP2 2. Microsoft Office SharePoint Portal Server 2003 (SPS) Client PC Requirements 1. Microsoft Windows XP - SP2 2. Microsoft Internet Explorer 6+ SP1 Installation Procedure 1. Unzip the KWizCom SharePoint List Menu Editor zip file on your WSS/SPS Windows 2003 Server. 2. Double-click the.msi file in order to begin the web installation. 3. When the installation process is complete, you need to restart the IIS Server: Open the Command Prompt on your server. Type iisreset 8

9 Post Installation 1. After completion of the installation, you will see a new KWizCom entry in Windows Start -> All Programs -> KWizCom containing the following programs: About SharePoint List Menu Editor Display General Information about the component. Activate SharePoint List Menu Editor This utility enables you (the SharePoint Administrator) to activate the downloaded evaluation version. SharePoint List Menu Editor User Guide Link to user-guide document (.PDF). 9

10 Component Activation KWizCom components are available for evaluation prior to purchase. This way you can try our components and verify that they indeed meet your needs. An evaluation version for each KWizCom component contains all features of the component's production version. The only difference is that an evaluation version is time-limited, and will operate for a period of one month. Once you decide to order a KWizCom component, you will need to follow the following steps: 1. Order the component on the KWizCom website 2. Send us the installed evaluation version's product Code (you will see the product Code on the "About" product page: Product Code Please use the Activation Request web form, on KWizCom web site to send us your product code. 3. Get the component activation key this key will be sent to you by once your order is processed. 10

11 4. Activate your installed evaluation version - click Start -> All Programs -> KWizCom -> SharePoint List Menu Editor -> Activate SharePoint List Menu Editor 11

12 Administrator Guide Adding a new menu item This section provides a walkthrough for adding new menu item to a SharePoint list/document library. The following screenshot displays a team site with "Shared Documents" web part. In this walkthrough we will add a new "Send Document as Link" menu item to this web part. 12

13 Adding a new menu item to a web part displaying some SharePoint list is done in the following way: 1. Insert the SharePoint List Menu Editor into the web part page, by browsing to the "Virtual Server Gallery" and dragging the web part onto the page: The SharePoint List Menu editor web part will display the following message: "Connect the web part by select [Connections->Connect to List] in the web part menu". 2. Connect SharePoint List Menu Editor web part to the "Shared Documents" web part: Select the web part's "Connections" menu, and then select "Connect to List > Shared Documents" as shown on the screenshot bellow. 13

14 The SharePoint List Menu Editor is now connected to the "Shared Documents" web part. 3. After connecting the two web parts, SharePoint List Menu Editor displays the following user interface: 14

15 Toolbar javascript editor The web part's toolbar contains the following commands: Add Menu Add a new menu item definition. Clicking this button will prompt with the following dialog: Menu displayed caption Javascript function name Menu item icon url Add Separator Adds a separating line between menu items Templates Enables loading a menu item definition from existing templates, 15

16 and to save current edited menu definition as a template for future use. Save Saves the current menu definition to the connected web part. After saving completes, the new defined menu items should appear in the web part's drop-down menu. 4. Let's add now a new "Send Document Link by " menu item: Click "Add Menu" and fill the following dialog as displayed: Click "Save and Close". The following code will be added to the javascript editor: 16

17 CAMOpt(m, p_caption, p_action, p_imgurl) is the javascript function which actually adds a new menu. It receives 4 parameters: Parameter Type Description m reference This is a reference to the SharePoint menu object. DO NOT change it. p_caption String Menu item's displayed caption p_action String javascript function name. This function is the event handler of the menu click event. You shlud implement this function. P_ImgUrl String URL of the displayed menu icon. If left empty then no icon will be displayed. Implement the javascript function Now we have to implement the javascript function that handles the menu click event: CAMOpt(m, "Send Link By ", "SendDocLink()", "/_layouts/images/eml16.gif"); this.senddoclink = SendDocLink; function SendDocLink() { var surl = "[(EncodedAbsUrl)]"; var sdata = "<a href='" + surl + "'>" + surl + "</a>"; try { var olapp = new ActiveXObject('outlook.application'); var oitem = olapp.createitem(0); oitem.subject = 'Take a look at this document'; oitem.htmlbody = sdata; oitem.display(true); } catch(e) 17

18 { window.navigate('mailto:%20?subject=take a look at this document...&body=" + sdata + "') } } // add a separator to the menu CAMSep(m); That's it! Now save the menu definition by clicking Save menu. Now, select one of the documents on the "Shared Documents" web part and you'll see the new defined menu appearing as the 1 st menu item: 18

19 Set the page mode back to View mode, and the SharePoint List Menu Editor will become invisible. 19

20 Using Menu Templates SharePoint List Menu Editor enables you to save menu definitions as templates and then reuse them on other lists/document libraries. Saving a menu definition as template After you finish coding a menu definition, simply click "Templates > Save as Template" on the web part's toolbar: Loading a menu template Click "Templates > Load Template" on the web part's toolbar. The following popup window is displayed: Select a desired menu template and click "Save and Close". The selected 20

21 menu definition (javascript code) will be added to the last line on the Menu list editor web part. 21

22 FAQ What exactly does KWizCom SharePoint List Menu Editor do? This web part enables SharePoint administrators add new custom menu items to any required SharePoint list or document library. These new menu items can be added to the list's page or to a web part that displays a certain list. Do I have to install anything on my company's client-pcs? No. KWizCom SharePoint List Menu Editor is a server installation. How do I retrieve a list field values and use it on my menu definition script? Please review the following Microsoft article: 22

23 Version Release Notes Primary Software Version Base version n/a Release date Jan Sub-Modules Module Version n/a n/a New Added Features n/a This Version's Known Issues/Limitations CR # Description 23

24 Technical Support You can obtain technical support using any of the following methods: The KWizCom Web site The KWizCom website at contains the most updated valuable information, including: Answers to frequently asked questions (FAQ's) about our products usability and technical questions. Product updates, which provide you with bug fixes and new features. The Web Form For technical support through the Internet, please fill in our support web form on our web site For more information on technical support, please review our support programs page. 24

Installation & User Guide

Installation & User Guide SharePoint InfoPath Form Viewer web part Installation & User Guide Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters P.O. Box #38514 North York, Ontario M2K 2Y5 Canada E-mail: info@kwizcom.com

More information

Installation & User Guide

Installation & User Guide SharePoint Favorite Documents Installation & User Guide Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters 10 Ruddington St. Toronto M2K 2J7 Canada E-mail: info@kwizcom.com Web site:

More information

Installation & User Guide

Installation & User Guide SharePoint Search String Highlighter Installation & User Guide Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters P.O. Box #38514 North York, Ontario M2K 2Y5 Canada E-mail: info@kwizcom.com

More information

Installation & User Guide

Installation & User Guide SharePoint Tagging Feature V1 Installation & User Guide Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters P.O. Box #38514 North York, Ontario M2K 2Y5 Canada E-mail: info@kwizcom.com

More information

SharePoint Remote List Viewer web part

SharePoint Remote List Viewer web part SharePoint Remote List Viewer web part Copyright 2005-2010 KWizCom corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R 9T3, Canada E-mail:

More information

Installation & User Guide

Installation & User Guide SharePoint Search String Highlighter Installation & User Guide Copyright 2005-2009 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 148 Castle Rock Dr. Richmond Hill, Ontario L4C

More information

Installation & User Guide

Installation & User Guide SharePoint URL field with file picker Installation & User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario

More information

Installation & User Guide

Installation & User Guide SharePoint Image Rotator Web Part Installation & User Guide Copyright 2005-2010 KWizCom corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario L3R 9T3,

More information

SharePoint Current Item Property Web Part

SharePoint Current Item Property Web Part SharePoint Current Item Property Web Part Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R 9T3, Canada E-mail:

More information

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide KWizCom Corporation SharePoint Repeating Rows Field Type User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario

More information

Installation & User Guide

Installation & User Guide SharePoint Media Plus Web Part Installation & User Guide Copyright 2005-2008 KWizCom corporation. All rights reserved. Company Headquarters 148 Castle Rock Dr. Richmond Hill, Ontario L4C 5K5, Canada E-mail:

More information

Installation & User Guide

Installation & User Guide SharePoint List Aggregator Installation & User Guide Copyright 2005-2009 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R 9T3,

More information

Installation & User Guide

Installation & User Guide SharePoint organization chart Web Part Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario

More information

KWizCom Corporation. File Upload field type. User Guide

KWizCom Corporation. File Upload field type. User Guide KWizCom Corporation File Upload field type User Guide Copyright 2005-2012 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R 9T3,

More information

SharePoint Mobile Extensions

SharePoint Mobile Extensions KWizCom Corporation SharePoint Mobile Extensions User Guide Copyright 2005-2010 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R

More information

Installation & User Guide

Installation & User Guide SharePoint Media Plus Web Part Installation & User Guide Copyright 2005-2013 KWizCom corporation. All rights reserved. Company Headquarters KWizCom 59 Mural Street, Suite 600 Richmond Hill, Ontario L4B

More information

KWizCom Corporation. SharePoint File Controller Feature. User Guide

KWizCom Corporation. SharePoint File Controller Feature. User Guide KWizCom Corporation SharePoint File Controller Feature User Guide Copyright 2005-2010 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario

More information

SharePoint List Custom Actions Feature

SharePoint List Custom Actions Feature KWizCom Corporation SharePoint List Custom Actions Feature User Guide Copyright 2005-2010 KWizCom Corporation. All rights reserved. SharePoint List Custom Actions User Guide Company Headquarters KWizCom

More information

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide KWizCom Corporation SharePoint Repeating Rows Field Type User Guide Copyright 2005-2014 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2

More information

Installation & User Guide

Installation & User Guide SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario

More information

SharePoint List Custom Actions Feature

SharePoint List Custom Actions Feature KWizCom Corporation SharePoint List Custom Actions Feature User Guide Copyright 2005-2010 KWizCom Corporation. All rights reserved. SharePoint List Custom Actions User Guide Company Headquarters KWizCom

More information

imush Information Management Utilities for SharePoint

imush Information Management Utilities for SharePoint KWizCom Corporation imush Information Management Utilities for SharePoint Printing Feature User Guide Copyright 2005-2012 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh

More information

SharePoint Cascading Lookup Plus Field Type. Administrator Guide

SharePoint Cascading Lookup Plus Field Type. Administrator Guide SharePoint Cascading Lookup Plus Field Type Administrator Guide Copyright 2005-2013 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON

More information

KWizCom Corporation. SharePoint Discussion Boards Feature. User Guide

KWizCom Corporation. SharePoint Discussion Boards Feature. User Guide KWizCom Corporation SharePoint Discussion Boards Feature User Guide Copyright 2005-2010 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario

More information

imush Information Management Utilities for SharePoint

imush Information Management Utilities for SharePoint KWizCom Corporation imush Information Management Utilities for SharePoint Scanning Feature User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh

More information

SharePoint Cascading Lookup Plus Field Type. Administrator Guide

SharePoint Cascading Lookup Plus Field Type. Administrator Guide SharePoint Cascading Lookup Plus Field Type Administrator Guide Copyright 2005-2016 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario

More information

Installation & User Guide

Installation & User Guide SharePoint Rating Solution Installation & User Guide Copyright 2005-2013 KWizCom Corporation. All rights reserved. E-mail: info@kwizcom.com Web site: http://www.kwizcom.com Sales E-mail: sales@kwizcom.com

More information

KWizCom Corporation. SharePoint Discussion Boards Feature. User Guide

KWizCom Corporation. SharePoint Discussion Boards Feature. User Guide KWizCom Corporation SharePoint Discussion Boards Feature User Guide Copyright 2005-2010 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario

More information

SharePoint Mobile Extensions

SharePoint Mobile Extensions KWizCom Corporation SharePoint Mobile Extensions Admin Guide Copyright 2005-2012 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R

More information

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide KWizCom Corporation SharePoint Repeating Rows Field Type User Guide Copyright 2005-2016 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2

More information

KWizCom Custom Actions

KWizCom Custom Actions KWizCom Corporation KWizCom Custom Actions Admin Guide Copyright 2005-2015 KWizCom Corporation. All rights reserved. KWizCom Custom Actions Admin Guide Company Headquarters 95 Mural Street, Suite 600 Richmond

More information

ShareGo SharePoint and Desktop Become One!

ShareGo SharePoint and Desktop Become One! ShareGo SharePoint and Desktop Become One! User Guide Copyright 2005 KWizCom LTD. All rights reserved. Company Headquarters P.O. Box #38514 North York, Ontario M2K 2Y5 Canada E-mail: info@kwizcom.com Web

More information

KWizCom Corporation. Datasheet View for SharePoint 2013/2016. User Guide

KWizCom Corporation. Datasheet View for SharePoint 2013/2016. User Guide KWizCom Corporation Datasheet View for SharePoint 2013/2016 User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B

More information

KWizCom Corporation. SharePoint Enterprise Aggregation Caching Feature. User Guide

KWizCom Corporation. SharePoint Enterprise Aggregation Caching Feature. User Guide KWizCom Corporation SharePoint Enterprise Aggregation Caching Feature User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham,

More information

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide KWizCom Corporation SharePoint Repeating Rows Field Type User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2

More information

imush Information Management Utilities for SharePoint

imush Information Management Utilities for SharePoint KWizCom Corporation imush Information Management Utilities for SharePoint Printing Feature User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural

More information

imush Information Management Utilities for SharePoint

imush Information Management Utilities for SharePoint KWizCom Corporation imush Information Management Utilities for SharePoint Scanning Feature User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural

More information

KWizCom Corporation. SharePoint Aggregated Calculation Field Type. User Guide

KWizCom Corporation. SharePoint Aggregated Calculation Field Type. User Guide KWizCom Corporation SharePoint Aggregated Calculation Field Type User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill,

More information

KWizCom Corporation. Clipboard Manager for SharePoint. User Guide

KWizCom Corporation. Clipboard Manager for SharePoint. User Guide KWizCom Corporation Clipboard Manager for SharePoint User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario

More information

KWizCom Corporation. List Aggregator App. User Guide

KWizCom Corporation. List Aggregator App. User Guide KWizCom Corporation List Aggregator App User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada

More information

SharePoint Wiki Plus Administration Guide

SharePoint Wiki Plus Administration Guide SharePoint Wiki Plus Administration Guide Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario

More information

KWizCom Corporation. Field Groups/Tabs App. User Guide

KWizCom Corporation. Field Groups/Tabs App. User Guide KWizCom Corporation Field Groups/Tabs App User Guide Copyright 2005-2016 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada

More information

Installation & User Guide

Installation & User Guide SharePoint Risk Management Chart web part Installation & User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill,

More information

SharePoint Wiki Plus Administration Guide

SharePoint Wiki Plus Administration Guide SharePoint Wiki Plus Administration Guide Installation & User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill,

More information

SharePoint List Custom Actions Feature

SharePoint List Custom Actions Feature KWizCom Corporation SharePoint List Custom Actions Feature User Guide Copyright 2005-2012 KWizCom Corporation. All rights reserved. SharePoint List Custom Actions User Guide Company Headquarters KWizCom

More information

KWizCom Corporation. Repeating Rows App. User Guide

KWizCom Corporation. Repeating Rows App. User Guide KWizCom Corporation Repeating Rows App User Guide Copyright 2005-2015 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada

More information

KWizCom Corporation. Default Values App. User Guide

KWizCom Corporation. Default Values App. User Guide KWizCom Corporation Default Values App User Guide Copyright 2005-2015 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada

More information

KWizCom Corporation. Paste+ App. User Guide

KWizCom Corporation. Paste+ App. User Guide KWizCom Corporation Paste+ App User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario L4B 3G2, Canada E-mail:

More information

KWizCom Corporation. KPI App. User Guide

KWizCom Corporation. KPI App. User Guide KWizCom Corporation KPI App User Guide Copyright 2005-2019 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada E-mail: info@kwizcom.com

More information

KWizCom Corporation. Scan App. User Guide

KWizCom Corporation. Scan App. User Guide KWizCom Corporation Scan App User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada E-mail: info@kwizcom.com

More information

KWizCom Corporation. Data View Plus App. User Guide

KWizCom Corporation. Data View Plus App. User Guide KWizCom Corporation Data View Plus App User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada

More information

Administration Guide

Administration Guide SharePoint List Aggregator Administration Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario L4B 3G2, Canada

More information

KWizCom Corporation. Conditional Formatting App. User Guide

KWizCom Corporation. Conditional Formatting App. User Guide KWizCom Corporation Conditional Formatting App User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2

More information

KWizCom Corporation. Cascading LookApp. User Guide

KWizCom Corporation. Cascading LookApp. User Guide KWizCom Corporation Cascading LookApp User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada E-mail:

More information

Installation & User Guide

Installation & User Guide SharePoint List Aggregator Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R 9T3,

More information

KWizCom Corporation. KWizCom Touch App. User Guide

KWizCom Corporation. KWizCom Touch App. User Guide KWizCom Corporation KWizCom Touch App User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada E-mail:

More information

KWizCom Apps and Tools activation tutorial

KWizCom Apps and Tools activation tutorial KWizCom Apps and Tools activation tutorial This article outlines how to use KWizCom's activation form in order to activate your KWizCom App (SharePoint online add-in) and other SharePoint Online Tools

More information

Installation & User Guide

Installation & User Guide SharePoint Calendar Plus Installation & User Guide Copyright 2005-2016 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario L4B 3G2,

More information

Installation & User Guide

Installation & User Guide SharePoint Calendar Plus Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R 9T3, Canada

More information

SOXS Manual T A B L E O F C O N T E N T S INTRODUCTION 2 WORK WITH THE SOXS CLIENT 2

SOXS Manual T A B L E O F C O N T E N T S INTRODUCTION 2 WORK WITH THE SOXS CLIENT 2 T A B L E O F C O N T E N T S INTRODUCTION 2 WORK WITH THE SOXS CLIENT 2 Link a SharePoint Library with Outlook (Create a SharePoint Favorite) 3 Save emails in a SharePoint library 4 Content Types and

More information

Colligo Contributor Pro 4.4 SP2. User Guide

Colligo Contributor Pro 4.4 SP2. User Guide 4.4 SP2 User Guide CONTENTS Introduction... 3 Benefits... 3 System Requirements... 3 Software Requirements... 3 Client Software Requirements... 3 Server Software Requirements... 3 Installing Colligo Contributor...

More information

KWizCom Corporation. imush. Information Management Utilities for SharePoint. Printing Feature. Application Programming Interface (API)

KWizCom Corporation. imush. Information Management Utilities for SharePoint. Printing Feature. Application Programming Interface (API) KWizCom Corporation imush Information Management Utilities for SharePoint Printing Feature Application Programming Interface (API) Copyright 2005-2014 KWizCom Corporation. All rights reserved. Company

More information

Colligo Contributor 4.3 SP6. Release Notes

Colligo Contributor 4.3 SP6. Release Notes 4.3 SP6 Release Notes TECHNICAL REQUIREMENTS Software Requirements requires one of the following operating systems: Windows XP Professional Windows Vista Windows 7 Client Software Requirements has the

More information

Newforma Contact Directory Quick Reference Guide

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

More information

Contents. Common Site Operations. Home actions. Using SharePoint

Contents. Common Site Operations. Home actions. Using SharePoint This is a companion document to About Share-Point. That document describes the features of a SharePoint website in as much detail as possible with an emphasis on the relationships between features. This

More information

Tzunami Inc. Evaluation Guide

Tzunami Inc. Evaluation Guide Tzunami Inc. Evaluation Guide Using K-Wise Deployer for Rapid Content Migration into Microsoft SharePoint Products and Technologies Rapid migration solutions for Microsoft SharePoint Portal Server 2003

More information

Solution Composer. User's Guide

Solution Composer. User's Guide Solution Composer User's Guide January 2014 www.lexmark.com Contents 2 Contents Overview...4 Understanding the basics...4 System recommendations...5 Building custom solutions...6 Getting started...6 Step

More information

FAQ about S7 communication via IE

FAQ about S7 communication via IE FAQ about S7 communication via IE S7 communication via Industrial Ethernet FAQ Table of Contents Table of Contents... 2 Question...2 How do I configure a S7 connection for a user application via Industrial

More information

KWizCom Forms. User Guide

KWizCom Forms. User Guide KWizCom Forms User Guide Copyright 2005-2015 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada E-mail: info@kwizcom.com Web site:

More information

SharePoint Wiki Plus Getting Started

SharePoint Wiki Plus Getting Started SharePoint Wiki Plus Getting Started Installation & User Guide Copyright 2005-2008 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 148 Castle Rock Dr. Richmond Hill, Ontario L4C

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide

ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide Part Number: 73-00419 (05/2009) Licensing, Copyright, and Trademark Information The information in this document is subject to

More information

Colligo Manager 5.4 SP3. User Guide

Colligo  Manager 5.4 SP3. User Guide 5.4 SP3 User Guide Contents Enterprise Email Management for SharePoint 2010 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 4 Updating

More information

SLIM Applications 2017/12/12. SLIM Companion Migration Manager Release Notes

SLIM Applications 2017/12/12. SLIM Companion Migration Manager Release Notes SLIM Companion TM Migration Manager 1.0.3.5 Release Notes 2017/12/12 1 1. Introduction... 3 2. About SLIM Companion Migration Manager... 3 3. Supported Environments... 4 3.1 Supported Client Operating

More information

Microsoft Partner Day. Introduction to SharePoint for.net Developer

Microsoft Partner Day. Introduction to SharePoint for.net Developer Microsoft Partner Day Introduction to SharePoint for.net Developer 1 Agenda SharePoint Product & Technology Windows SharePoint Services for Developers Visual Studio Extensions For Windows SharePoint Services

More information

Vizit 6 Installation Guide

Vizit 6 Installation Guide Vizit 6 Installation Guide Contents Running the Solution Installer... 3 Installation Requirements... 3 The Solution Installer... 3 Activating your License... 7 Online Activation... 7 Offline Activation...

More information

What is Storyboard? How to Develop a Storyboard? Written Date : January 20, 2016

What is Storyboard? How to Develop a Storyboard? Written Date : January 20, 2016 Written Date : January 20, 2016 Websites and applications have evolved to become more and more complex. In order to deliver a better user experience to end users, UX design (user experience design) has

More information

leveraging your Microsoft KBase V3 Manual 2.1 INTRODUCTION... 3

leveraging your Microsoft KBase V3 Manual 2.1 INTRODUCTION... 3 Content KBase Manual 1 INTRODUCTION... 3 1.1 LANGUAGES... 3 1.2 SYSTEMS... 3 1.3 REQUIREMENTS... 3 2 INSTALLATION OF KBASE... 3 2.1 INTRODUCTION... 3 2.2 PROCESS... 4 2.3 FILES... 8 2.4 THE FIRST OUTLOOK

More information

DocAve Content Shield v2.2 for SharePoint

DocAve Content Shield v2.2 for SharePoint DocAve Content Shield v2.2 for SharePoint User Guide For SharePoint 2007 Revision A Issued August 2012 1 Table of Contents Table of Contents... 2 About DocAve Content Shield for SharePoint... 4 Complementary

More information

Amazon Connect - SpiceCSM Automated Reader Integration User Guide

Amazon Connect - SpiceCSM Automated Reader Integration User Guide Amazon Connect - SpiceCSM Automated Reader Integration User Guide Overview Amazon Connect and SpiceCSM together allow for the rapid development of intelligent IVR systems. The general flow in which Amazon

More information

Vb Net Tutorial For Beginners Visual Studio 2010 Express Windows Service Template

Vb Net Tutorial For Beginners Visual Studio 2010 Express Windows Service Template Vb Net Tutorial For Beginners Visual Studio 2010 Express Windows Service Template Visual Studio Express for Windows Desktop also offers that template, but Visual about how to use Visual Studio Express

More information

leveraging your Microsoft Calendar Browser for SharePoint Administrator Manual

leveraging your Microsoft Calendar Browser for SharePoint Administrator Manual CONTENT Calendar Browser for SharePoint Administrator manual 1 INTRODUCTION... 3 2 REQUIREMENTS... 3 3 CALENDAR BROWSER FEATURES... 4 3.1 BOOK... 4 3.1.1 Order Supplies... 4 3.2 PROJECTS... 5 3.3 DESCRIPTIONS...

More information

Colligo Contributor File Manager 4.3. User Guide

Colligo Contributor File Manager 4.3. User Guide Colligo Contributor File Manager 4.3 User Guide CONTENTS Introduction... 2 Technical Requirements... 3 Systems Supported... 3 Application Prerequisites... 3 Outlook Add-in Prerequisites... 3 Installing

More information

Last Updated: FRC 2019 BETA

Last Updated: FRC 2019 BETA Last Updated: 08-01-2018 FRC 2019 BETA Table of Contents VS Code (C++/Java IDE)...3 Alpha Test Info...4 Installing VS Code...5 VS Code Basics and WPILib in VS Code... 15 Creating a new WPILib project in

More information

MacroView ClauseBank Version 8.2

MacroView ClauseBank Version 8.2 MacroView ClauseBank Version 8.2 Effective: April 2016 MacroView Business Technology Pty Limited ACN 081 117 777 ABN 29 081 117 777 Level 12, 171 Clarence Street Sydney NSW 2000 Australia GPO Box 5149

More information

Zetadocs for Microsoft Dynamics SharePoint Components Installation Guide

Zetadocs for Microsoft Dynamics SharePoint Components Installation Guide Zetadocs for Microsoft Dynamics SharePoint Components Installation Guide Version history Version: 20/05/2009 Equisys plc Equisys House 32 Southwark Bridge Road London SE1 9EU United Kingdom Tel + 44 (0)20

More information

Team Helpdesk for Outlook & SharePoint Managerial Installation and Configuration (for version 6 and above)

Team Helpdesk for Outlook & SharePoint Managerial Installation and Configuration (for version 6 and above) Team Helpdesk for Outlook & SharePoint Managerial Installation and Configuration (for version 6 and above) Page 1 Team Helpdesk System consists of two separate installs Manager and Agent. The managerial

More information

Form Customizer v3.0 Support Frequently Asked Questions (FAQs)

Form Customizer v3.0 Support Frequently Asked Questions (FAQs) Form Customizer v3.0 Support Frequently Asked Questions (FAQs) A list of frequently asked support questions and answers on FormCustomizer v3.0 operation and use. I forgot my FormCustomizer User ID and/or

More information

End User SharePoint 2010 Videos List

End User SharePoint 2010 Videos List End User SharePoint 2010 Videos List Screencast Name Number Abstract Category A subsite (or simply referred to as site) is created as an interface for hosting pages, lists, libraries and web parts. Creating

More information

This manual will explain how to do a mail merge in Cordell Connect, using the following Windows programs:

This manual will explain how to do a mail merge in Cordell Connect, using the following Windows programs: Section 10 Mail Merge Cordell Connect has very a useful mail merge function for letters and mailing labels. Mail merges can be performed using project, company or contact information. The data source for

More information

Internet Video Security Monitoring Systems QUICK START GUIDE SEE WHAT YOU VE BEEN MISSING

Internet Video Security Monitoring Systems QUICK START GUIDE SEE WHAT YOU VE BEEN MISSING Internet Video Security Monitoring Systems QUICK START GUIDE SEE WHAT YOU VE BEEN MISSING Under the copyright laws, this documentation may not be copied, photocopied, reproduced, translated, or reduced

More information

Terms and conditions for using this document

Terms and conditions for using this document BowTieXP Web Viewer Please note that this documentation is preliminary and subject to change without notice. The latest version of this document can be obtained via Governors (support@governors.nl). Copyright

More information

Tutorial. Unit: Interactive Forms Integration into Web Dynpro for Java Topic: Dynamically generated forms

Tutorial. Unit: Interactive Forms Integration into Web Dynpro for Java Topic: Dynamically generated forms Tutorial Unit: Interactive Forms Integration into Web Dynpro for Java Topic: Dynamically generated forms At the conclusion of this exercise, you will be able to: Generate a dynamic form within a Web Dynpro

More information

Team TimeSheet for Outlook & SharePoint Client Installation and Configuration ( Per User Installation and Per Machine Installation )

Team TimeSheet for Outlook & SharePoint Client Installation and Configuration ( Per User Installation and Per Machine Installation ) Team TimeSheet for Outlook & SharePoint Client Installation and Configuration ( Per User Installation and Per Machine Installation ) Page 1 This install is meant for normal users who would be preparing

More information

Zetadocs for Microsoft Dynamics NAV Installation Guide

Zetadocs for Microsoft Dynamics NAV Installation Guide Zetadocs for Microsoft Dynamics NAV Installation Guide Version history Version: 4.1 International Published: 01/06/2011 Equisys plc Equisys House 32 Southwark Bridge Road London SE1 9EU United Kingdom

More information

Zetadocs for NAV Installation Guide. Equisys Ltd

Zetadocs for NAV Installation Guide. Equisys Ltd 2 Table of Contents 4 Deployment Scenarios Overview Zetadocs Express 4 Zetadocs Delivery Essentials 4 Zetadocs Capture Essentials 4 Deployment Environments 4 6 Express Installation 1. Installing the Zetadocs

More information

Virto Html5 Bulk File Upload for Microsoft SharePoint Release User and Installation Guide

Virto Html5 Bulk File Upload for Microsoft SharePoint Release User and Installation Guide Virto Html5 Bulk File Upload for Microsoft SharePoint Release 1.6.0 User and Installation Guide 2 Table of Contents Contents Table of Contents... 2 Features List... 3 System/Developer Requirements... 3

More information

Doc-To-Help 2014 Quick Tour

Doc-To-Help 2014 Quick Tour Getting Started Workbook Doc-To-Help 2014 Quick Tour Editor: Microsoft Word Copyright 2014 GrapeCity, inc. All rights reserved. Corporate Headquarters ComponentOne, a division of GrapeCity, inc. 201 South

More information

Zetadocs for Microsoft Dynamics SharePoint Extensions Installation Guide

Zetadocs for Microsoft Dynamics SharePoint Extensions Installation Guide Zetadocs for Microsoft Dynamics SharePoint Extensions Installation Guide Version history Version: 18/11/2009 Equisys plc Equisys House 32 Southwark Bridge Road London SE1 9EU United Kingdom Tel + 44 (0)20

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365... 3 LICENSE ACTIVATION...

More information