Create Login Form. Longflow Enterprises Ltd. Page 1

Size: px
Start display at page:

Download "Create Login Form. Longflow Enterprises Ltd. Page 1"

Transcription

1 Create Login Form Contents Scenarios... 2 Create Login Form... 3 Form UI... 3 Start with Login... 3 Database Query... 3 Query action using user inputs... 6 Show form with permission checking... 9 Show Access denied message Assign actions to button Administration Form User query Data entry UI Data-binding Database operations Record navigations Create new record Delete record Save to database Set default password for new record Change password Form UI Verify current password Create database query Create query action Use Database Updater Create update command Create database execution action Invoke password-modify process Longflow Enterprises Ltd. Page 1

2 Show invalid new password message Abort on invalid new password Verify current password Show message for verification failure Abort on verification failure Execute password modification Close the form Launch dialogue Feedback Scenarios Suppose we created several forms. We want to restrict user access to these forms. We want to use a database table to record users and access rights to each form. Suppose we use following table to record users of the program: Field name Data type Description accountid Integer, autonumber Primary key loginname characters Account login name loginpass characters Password form1 Boolean Permission to access form 1 form2 Boolean Permission to access form 2 form3 Boolean Permission to access form 3 form4 Boolean Permission to access form 4 form5 Boolean Permission to access form 5 form6 Boolean Permission to access form 6 Longflow Enterprises Ltd. Page 2

3 We may use a login form to check user access right before showing other forms. The samples presented below are for showing programming skills and how things can be done, not for showing how a project should be done or how database should be used. The samples show how you may create password-protected forms from scratch. But note that Limnor Studio also provides a complete application security system called Login Management Framework, see Create Login Form Form UI Add a login form for entering login name and password. There are 6 buttons; each button is for opening one form. Start with Login We need to make the login form the first form of the program: Database Query We use an EasyDataSet component for querying database to do login and checking access rights. Longflow Enterprises Ltd. Page 3

4 Set its DatabaseConnection property to connect to the database. Set its SQL property to query for user: Add filter to check user credential: Longflow Enterprises Ltd. Page 4

5 Longflow Enterprises Ltd. Page 5

6 If you use password hash then you need to check password hash in the filter, for example, `accounts`.`loginname` AND `accounts`.`loginpass` = PASSWORD(@pass) Query action using user inputs Create a QueryWithParameterValues action to query user credential and access rights: of the action, use the Text property of the text box for login name: Longflow Enterprises Ltd. Page 6

7 of the action, choose Text property of the text box for password: Longflow Enterprises Ltd. Page 7

8 Click OK to finish creating this action: Longflow Enterprises Ltd. Page 8

9 The new action appears under Actions: On executing this action, we may check that whether RowCount property of the EasyDataSet is 0. If it is 0 then the login/password is not correct. If login passed then we may check whether the user has the access right for showing the form to be opened. Let s create actions to do these tasks. Show form with permission checking Suppose we want to show Form1. Select Show method of the default instance of Form1: Longflow Enterprises Ltd. Page 9

10 Set ActionCondition to check RowCount and field form1: Longflow Enterprises Ltd. Page 10

11 Longflow Enterprises Ltd. Page 11

12 Longflow Enterprises Ltd. Page 12

13 The new action appears under Actions: Show Access denied message We may use a message box to show access denied message. Longflow Enterprises Ltd. Page 13

14 Set ActionCondition to that RowCount is 0 OR field form1 is 0: Longflow Enterprises Ltd. Page 14

15 Longflow Enterprises Ltd. Page 15

16 The owner of the message is the current form: Longflow Enterprises Ltd. Page 16

17 Parameter text is the message we want to display; caption is the title of the message box. Rename the action name and click OK to finish creating this action: The new action appears under Actions: Assign actions to button We have created 3 actions. We want these 3 actions to be executed when the button for showing Form1 is clicked. Right-click the button; choose Assign Action ; choose Click event: Longflow Enterprises Ltd. Page 17

18 Select the 3 actions: The actions are assigned to the button. We need to move the query action to be the first action: Longflow Enterprises Ltd. Page 18

19 We may do the same programming for all other buttons. The query action can be reused. Longflow Enterprises Ltd. Page 19

20 The query action is reused. Actions DefForm2.Show and MessageBox.Form2Denied are new actions. We can do the same for the other 4 buttons: Administration Form We need an administration form to grant user accesses to forms. Suppose we develop Form1 as the administration form. User query Use an EasyDataSet for database operations. Set its SQL property to include all fields from the account table: Longflow Enterprises Ltd. Page 20

21 Data entry UI Use text box for login name. Use check boxes for form1, form2,, form6. Longflow Enterprises Ltd. Page 21

22 Data-binding Bind data-entry controls to the EasyDataSet. Bind login name text box to loginname: Longflow Enterprises Ltd. Page 22

23 Bind password text box to loginpass: Bind check boxes to corresponding fields: Longflow Enterprises Ltd. Page 23

24 Database operations Record navigations Longflow Enterprises Ltd. Page 24

25 A MoveFirst action is created and assigned to buttonfirst. We may program other record navigation buttons in the similar way: Longflow Enterprises Ltd. Page 25

26 Longflow Enterprises Ltd. Page 26

27 Create new record The action is created and assigned to the button: Longflow Enterprises Ltd. Page 27

28 Delete record The action is created and assigned to the button: Longflow Enterprises Ltd. Page 28

29 Save to database Modifications to all records are not saved to the database until an Update action is executed. We use a Save button to do it. Longflow Enterprises Ltd. Page 29

30 The action is created and assigned to the button: Set default password for new record One problem in the above programming is that the password is changeable by the administrator. We may set the password text box to read-only so that the administrator cannot change it: Longflow Enterprises Ltd. Page 30

31 When a new record is created, we may set the password to a default value: Select loginpass: Longflow Enterprises Ltd. Page 31

32 Give a password value: The action is created and assigned to the button: Longflow Enterprises Ltd. Page 32

33 Change password We need to allow the users to change their passwords. Suppose we provide this functionality in FormChangePassword. Form UI We use a text box for entering login name for identifying which account to modify, use a text box for entering the current password, use two text boxes for entering new password and confirm new password, use a button to save the new password. Longflow Enterprises Ltd. Page 33

34 Verify current password Create database query Use an EasyDataSet to verify the current password: Set its SQL property to search the record: The query returns the accountid for identifying the user account. It uses the same filter as used in login form: Longflow Enterprises Ltd. Page 34

35 Longflow Enterprises Ltd. Page 35

36 Create query action Pass values from text boxes to the action: Longflow Enterprises Ltd. Page 36

37 Longflow Enterprises Ltd. Page 37

38 Click OK to finish creating this action: Use Database Updater Add a database updater for modifying password: Longflow Enterprises Ltd. Page 38

39 Create update command Set its ExecutionCommand property for modifying password: Choose Update command: Check loginpass field; set its value Longflow Enterprises Ltd. Page 39

40 Set filter to specify which record to modify: Click Filter: Add filter on accountid: Longflow Enterprises Ltd. Page 40

41 Click OK: Click OK: Longflow Enterprises Ltd. Page 41

42 Click OK: Make sure is an integer: Longflow Enterprises Ltd. Page 42

43 Create database execution action Create a database execution action to save the new password: Pass the accountid from the EasyDataSet to the action: Longflow Enterprises Ltd. Page 43

44 Pass the new password to the action: Longflow Enterprises Ltd. Page 44

45 Click OK to finish creating the action: Longflow Enterprises Ltd. Page 45

46 Invoke password-modify process We want the password-modify process starts when the Save button is clicked. Show invalid new password message First, we want to show a message box if the new password is empty or the two text boxes for new password do not match: Select a Show method of the message box: Use the current form for the message box owner: Longflow Enterprises Ltd. Page 46

47 Set the message; rename the action; set ActionCondition: Check new password is empty: Longflow Enterprises Ltd. Page 47

48 Check two text boxes match: Longflow Enterprises Ltd. Page 48

49 Longflow Enterprises Ltd. Page 49

50 Click OK to finish creating this action: Longflow Enterprises Ltd. Page 50

51 The action is created and assigned to the button: Abort on invalid new password After showing invalid new password message, we need to abort the event handling for the button. This is done by adding an Abort action: Select Abort: Longflow Enterprises Ltd. Page 51

52 An Abort action is assigned to the button. Rename it to AbortInvalidNewPass: Set its ActionCondition to the same condition of the previous message box action: Verify current password Assign the query action to the button: Longflow Enterprises Ltd. Page 52

53 The action is assigned to the button: Show message for verification failure If the verification fails then we need to show a message box. Select a Show method: Longflow Enterprises Ltd. Page 53

54 Use the current form as the owner of the message box; set the text for the message; set ActionCondition: We used RowCount before. Alternatively, we may also use HasData instead: Longflow Enterprises Ltd. Page 54

55 Click OK: Longflow Enterprises Ltd. Page 55

56 The action is created and assigned to the button: Abort on verification failure Assign an abort action to the button: Longflow Enterprises Ltd. Page 56

57 An Abort action is assigned to the button. Rename it to AbortInvalidCurrentPass: Set its ActionCondition to the same condition as the previous message box: Longflow Enterprises Ltd. Page 57

58 Execute password modification The action is assigned to the button: Longflow Enterprises Ltd. Page 58

59 Close the form After modifying the password, we may close the form: Select Close method: Longflow Enterprises Ltd. Page 59

60 Click OK: The action is created and assigned to the button: Launch dialogue We want to launch the password-change form as a dialogue box from the login form. Add a new button on the login form to do it. Right-click the new button; choose Assign Action ; choose Click event: Longflow Enterprises Ltd. Page 60

61 Choose ShowDialogue method of the default instance of the Change Password form: Longflow Enterprises Ltd. Page 61

62 Use current form as the dialogue box owner: Click OK: Longflow Enterprises Ltd. Page 62

63 Feedback Please send your feedback and suggestions to Longflow Enterprises Ltd. Page 63

Windows Forms Sample Part B2. Login Manager

Windows Forms Sample Part B2. Login Manager Login Manager Contents Introduction... 2 Login Management Framework... 2 Windows Form Application Sample... 2 Password Management... 2 Reset password Create reset code... 3 ResetCode property... 3 Create

More information

Login Manager Windows Form Sample

Login Manager Windows Form Sample Login Manager Windows Form Sample Contents Introduction... 2 Login Management Framework... 2 Windows Form Application Sample... 2 Start Form... 2 Login Form... 6 UI... 6 User table... 6 Add Login Manager

More information

Programming with Visual HTML Editor

Programming with Visual HTML Editor Programming with Visual HTML Editor Last modify: Wednesday, March 12, 2014 Table of Contents Introduction... 2 Use Visual HTML Editor... 2 Web Programming... 2 Include Elements for Programming... 2 Identifying

More information

Web Database Programming

Web Database Programming Web Database Programming Web Database Programming 2011 Created: 2011-01-21 Last update: 2015-12-20 Contents Introduction... 2 Use EasyDataSet as Data Source... 2 Bind-data to single field... 2 Data Query...

More information

Web Database Programming

Web Database Programming Web Database Programming Web Database Programming 2011 Created: 2011-01-21 Last update: 2014-01-14 Contents Introduction... 2 Use EasyDataSet as Data Source... 2 Add EasyDataSet to web page... 3 Make Database

More information

Switch Web Event Handler

Switch Web Event Handler Switch Web Event Handler Contents Introduction... 1 Use SwitchEventHandler actions... 2 Switch handler at runtime (1)... 2 Switch handler at runtime (2)... 7 Remove Event Handler... 12 Test... 14 Feedback...

More information

Control of Row Deletion

Control of Row Deletion Control of Row Deletion Contents Introduction... 1 Check Record Existence... 1 Handle Event UserDeletingRow... 2 Create event handler... 2 Get cell of the row... 3 Query database... 5 Check database record

More information

Database Programming in Tiers

Database Programming in Tiers Database Programming in Tiers Contents Introduction... 2 Create Class Library Project... 3 Derive from EasyDataSet... 4 Derive from EasyUpdator... 8 Derive from EasyGrid... 12 Use Data Accessing Layer...

More information

Web Editors in Limnor Studio

Web Editors in Limnor Studio Web Editors in Limnor Studio Last updated: Friday, March 7, 2014 Contents Introduction... 1 Switch Web Editors... 2 Use Visual HTML Editor... 4 Users Guide... 4 Data-binding... 4 Element programming...

More information

Web Database Programming

Web Database Programming Web Database Programming Web Database Programming 2011 Created: 2011-01-21 Last update: 2014-01-14 Contents Introduction... 2 Use EasyDataSet as Data Source... 2 Bind-data to single field... 2 Data Query...

More information

Login Manager ASPX Sample

Login Manager ASPX Sample Login Manager ASPX Sample Contents Introduction... 1 Login Management Framework... 2 Windows Form Application Sample... 2 PHP Web Project Sample... 2 ASPX Web Project Sample... 2 Create Web Project...

More information

Web Data Repeater. Web Data Repeater 2011

Web Data Repeater. Web Data Repeater 2011 Web Data Repeater Web Data Repeater 2011 Contents Introduction... 1 Data Query... 2 Number of Records in a Page... 5 Form Design... 7 Data Binding... 7 Data-binding to data repeater... 7 Data-binding to

More information

Use JavaScript Files

Use JavaScript Files Use JavaScript Files Use JavaScript Files 2011 Contents Introduction... 1 Include JavaScript Files... 2 Access JavaScript Variables... 4 Execute JavaScript Functions... 8 Test... 10 Example: Use CKEditor...

More information

Use Arrays and Collections

Use Arrays and Collections Use Arrays and Collections Contents Introduction... 1 Create Act on each item action... 1 Use Array and Collection in a Method... 9 Create a method... 9 Create Action Execute actions for all items... 10

More information

Web Dialogue and Child Page

Web Dialogue and Child Page Web Dialogue and Child Page Create date: March 3, 2012 Last modified: March 3, 2012 Contents Introduction... 2 Parent Page Programming... 2 Methods... 2 ShowChildDialog... 2 ShowChildWindow... 4 ShowPopupWindow...

More information

Use Default Form Instances

Use Default Form Instances Use Default Form Instances Created: 2011-01-03 Modified:2012-07-05 Contents Introduction... 2 Add Form Classes... 3 Starting Form (Home Page)... 5 Use Multiple Forms... 6 Different Ways of Showing Forms...

More information

Contents Introduction

Contents Introduction Receive Emails Contents Introduction... 1 UI Design... 2 Add Mail Receiver... 2 Create Mail Receiving Method... 5 Create new method... 5 Clear email contents display... 6 Disconnect existing connection...

More information

Limnor Studio User s Guide

Limnor Studio User s Guide L i m n o r S t u d i o U s e r G u i d e - I n s t a l l e r 1 Limnor Studio User s Guide Installer Last modified: May 15, 2015 Contents 1 Setup Project... 3 2 General Information... 6 2.1 Banner Image

More information

Use Plug-ins. Use Plug-ins 2012

Use Plug-ins. Use Plug-ins 2012 Use Plug-ins Contents Introduction... 2 Plug-in Definition... 3 Use Plug-in Base Class or Interface... 3 Create Plug-in Definition... 3 Data-sharing between Plug-ins... 7 Plug-in Manager... 8 Derive a

More information

Limnor Studio User s Guide

Limnor Studio User s Guide L i m n o r S t u d i o U s e r G u i d e - P a r t I 1 Limnor Studio User s Guide Part I Objects Contents I. Introduction... 3 II. Programming Entity Object... 4 II.1. Everything is an object... 4 II.2.

More information

Parse String at Web Client

Parse String at Web Client Parse String at Web Client Last updated: 2013-02-18 Contents The Sample Problem... 1 Create a Parse Method... 2 Use String Variable... 2 Split user input... 3 Get Number of Words... 5 Merge Array into

More information

Image Data Binding. Save images in database An image needs large amount of storage space. Only binary variable length fields may hold images.

Image Data Binding. Save images in database An image needs large amount of storage space. Only binary variable length fields may hold images. Image Data Binding Contents Save images in database... 1 Data Binding... 2 Update images... 3 Create method to select image into the Picture Box... 3 Execute SelectMethod when the Picture Box is clicked...

More information

Use Web Event Bubbling

Use Web Event Bubbling Use Web Event Bubbling Contents Introduction... 1 Use event bubbling... 1 Test event bubbling... 9 Feedbacks... 11 Introduction Every element in a web page has a parent element. For example, a button s

More information

Limnor Studio User s Guide

Limnor Studio User s Guide L i m n o r S t u d i o U s e r G u i d e - P a r t I I I 1 Limnor Studio User s Guide Part III Expressions Contents 1 Introduction to Expressions... 3 1.1 What are expressions... 3 1.2 Create and edit

More information

Execute Server Actions from Client Methods

Execute Server Actions from Client Methods Execute Server Actions from Client Methods Contents Scenario... 1 One Problem... 6 A Solution... 8 Create a client event... 8 Assign actions to new event... 8 Fire event... 11 Test... 17 Conclusion...

More information

Database Updater. Database Updater does not have a use interface, so it will appear in Extra Performers window for the page at design time:

Database Updater. Database Updater does not have a use interface, so it will appear in Extra Performers window for the page at design time: Database Updater Database Updater is a performer for updating database records. It is used to execute the None-Query SQL statements: INSERT, UPDATE and DELETE. INSERT statements are used to insert new

More information

Create Tabbed Web Browser

Create Tabbed Web Browser Create Tabbed Web Browser Contents Introduction... 2 TabControlWebBrowser... 2 AddNewWebPage... 2 GotoURL... 2 TabPageWebBrowser... 2 Create Class Library Project... 3 Create TabControlWebBrowser... 4

More information

Ekran System v.6.0 Privileged User Accounts and Sessions (PASM)

Ekran System v.6.0 Privileged User Accounts and Sessions (PASM) Ekran System v.6.0 Privileged User Accounts and Sessions (PASM) Table of Contents About... 3 Using Privileged User Accounts... 4 Password Vault Configuration... 5 Defining Domain Administrator Credentials...

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

Server Manager User and Permissions Setup

Server Manager User and Permissions Setup Login and Security Once you successfully create your company databases, the next step is to define the groups and users that can access the TRAVERSE data and the functionality they will have within the

More information

Contents Introduction

Contents Introduction Data Transfer Contents Introduction... 1 Data Transfer End Points... 2 Data Source... 2 Data Destination... 2 End point location... 3 Data Source... 3 Text file... 3 Data Query... 6 Data Destination...

More information

Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent

Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent Document ID: 118637 Contributed by Nazmul Rajib and Douglas Loss, Cisco TAC Engineers. Jun 05, 2015 Contents

More information

Microsoft SQL Installation and Setup

Microsoft SQL Installation and Setup This chapter provides information about installing and setting up Microsoft SQL. Encrypted Database Not Supported, page 1 Install and Setup Microsoft SQL Server, page 1 Database Migration Required for

More information

USER GUIDE. Enterprise Calendar. Event Management 8/1/2017 ENTERPRISE CALENDAR USER GUIDE 2

USER GUIDE. Enterprise Calendar. Event Management 8/1/2017 ENTERPRISE CALENDAR USER GUIDE 2 USER GUIDE Enterprise Calendar Event Management 8/1/2017 ENTERPRISE CALENDAR USER GUIDE 2 30 N. Third Street, Suite 200, Harrisburg, PA 17101 Phone : 717-773 - 4750 CHANGE HISTORY Author Date Version Change

More information

Jukebox. Sample Application - Jukebox

Jukebox. Sample Application - Jukebox Jukebox 1 Functionality... 2 1.1 User Interface Keyboard Configurations... 2 1.2 Song Data Editing... 3 1.3 Import Songs Automatically... 4 2 How this Sample Is Made... 4 2.1 Use of DataViewer Performers...

More information

PROFOREST FIELD AUDIT MOBILE APPLICATION USER MANUAL

PROFOREST FIELD AUDIT MOBILE APPLICATION USER MANUAL PROFOREST FIELD AUDIT MOBILE APPLICATION USER MANUAL For Web Application users Developed in collaboration with Table of Contents Introduction... 3 Features... 4 Account Management... 4 Project Management...

More information

Limnor Studio Getting Started

Limnor Studio Getting Started Limnor Studio Getting Started Longflow Enterprises Ltd. Tuesday, October 20, 2009 Contact: info@limnor.com 1 Introduction... 1 1.1 Limnor Studio... 1 1.2 Limnor Codeless Visual Programming... 3 2 Installation...

More information

Soonr Updates to Services, Web UI and Agents October 2013

Soonr Updates to Services, Web UI and Agents October 2013 This document covers powerful new features being introduced for Soonr Workplace during October 2013. These improvements include the following new capabilities: Granular Share Permissions Updates to Soonr

More information

Call DLL from Limnor Applications

Call DLL from Limnor Applications Call DLL from Limnor Applications There is a lot of computer software in the format of dynamic link libraries (DLL). DLLCaller performer allows your applications to call DLL functions directly. Here we

More information

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database

VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database VMware AirWatch Database Migration Guide A sample procedure for migrating your AirWatch database For multiple versions Have documentation feedback? Submit a Documentation Feedback support ticket using

More information

Project types supported by Limnor Studio

Project types supported by Limnor Studio Project Types Contents Introduction... 1 Windows Application... 2 Windows Service... 2 Class Library... 3 Web Service... 3 Console Application... 3 Setup... 3 Kiosk Application... 3 Screensaver Application...

More information

Caliber 11.0 for Visual Studio Team Systems

Caliber 11.0 for Visual Studio Team Systems Caliber 11.0 for Visual Studio Team Systems Getting Started Getting Started Caliber - Visual Studio 2010 Integration... 7 About Caliber... 8 Tour of Caliber... 9 2 Concepts Concepts Projects... 13 Baselines...

More information

Instant HR Auditor Installation Guide

Instant HR Auditor Installation Guide Instant HR Auditor Installation Guide Fall, 2015 Page 1 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software

More information

ADMINISTRATOR'S GUIDE TO SECURITY: 1099 PRO PROFESSIONAL, ENTERPRISE & CORPORATE SUITE Pro, Inc

ADMINISTRATOR'S GUIDE TO SECURITY: 1099 PRO PROFESSIONAL, ENTERPRISE & CORPORATE SUITE Pro, Inc ADMINISTRATOR'S GUIDE TO SECURITY: 1099 PRO PROFESSIONAL, ENTERPRISE & CORPORATE SUITE 1099 Pro, Inc 1099 Pro Administrator's Guide to Security by 1099 Pro 1099 Pro Security & Administration Disclaimer

More information

Services Cloud Manager Cloud Services Guide

Services Cloud Manager Cloud Services Guide Services Cloud Manager Cloud Services Guide Index Document version: v7.1-02/2018 Libelium Comunicaciones Distribuidas S.L. INDEX 1. Introduction...3 2. Accessing the Services Cloud Manager...4 2.1. Creating

More information

Version 1.0 PILOT FREIGHT SERVICES. Tariff Management System. User Guide

Version 1.0 PILOT FREIGHT SERVICES. Tariff Management System. User Guide Version 1.0 PILOT FREIGHT SERVICES Tariff Management System User Guide PILOT FREIGHT SERVICES Tariff Management System User Guide Pilot Freight Services 314 N. Middletown Rd. Lima, PA 19037 Table of Contents

More information

Junxure Code Upgrade Instructions

Junxure Code Upgrade Instructions Junxure Code Upgrade Instructions If at any time you run into an issue with the following process, call or email Junxure Support (866-586-9873, opt 1 or support@junxure.com) and we will assist you with

More information

Digest Authentication Setup for SIP Trunks

Digest Authentication Setup for SIP Trunks This chapter provides information about digest authentication setup for SIP trunks. When you configure digest authentication for SIP trunks, Cisco Unified Communications Manager challenges the identity

More information

How to transfer logins and passwords between instances of SQL Server

How to transfer logins and passwords between instances of SQL Server Sign in How to transfer logins and passwords between instances of SQL Server INTRODUCTION This article describes how to transfer the logins and the passwords between instances of Microsoft SQL Server 2005,

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6235A: Three days; Instructor-Led Introduction This three-day instructor-led course teaches students how to implement

More information

Xcalenets Console Setup Guide. Xcalenets Console Setup Guide (Standalone version)

Xcalenets Console Setup Guide. Xcalenets Console Setup Guide (Standalone version) Xcalenets Console Setup Guide Xcalenets Console Setup Guide (Standalone version) 1 Content CONTENT... 2 Getting Started to Xcalenets Console Setup... 3 Account Level Introduction... 3 Login Console Setup...

More information

Outlook Desktop Application for Windows

Outlook Desktop Application for Windows Access Your Email There are two common ways to access your mail: via the Outlook Desktop Application and the Outlook Web Application. This document focuses on how to use the Outlook Desktop Application

More information

LDAP Configuration Guide

LDAP Configuration Guide LDAP Configuration Guide Publication date: 11/8/2017 www.xcalar.com Copyright 2017 Xcalar, Inc. All rights reserved. Table of Contents About this guide 3 Configuring LDAP 4 Before you start 5 Configuring

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

IP-guard v3.2 Migration Guideline

IP-guard v3.2 Migration Guideline IP-guard v3.2 Migration Guideline Copyright 2012 Teclink Development Ltd. All rights reserved. IP-guard v3.2 Migration Guideline P. 2 INTRODUCTION The purpose of this document is to provide detailed guideline

More information

IQSweb Migration Steps

IQSweb Migration Steps IQSweb Migration Steps 1. On the old server, perform a backup of the IQSweb database. a. To create a backup copy of the IQSweb database, open SQL Server Management Studio. Start SQL Server Management Studio,

More information

Dynamic Event Handling

Dynamic Event Handling Dynamic Event Handling Contents Introduction... 1 Sample Project... 2 Attach Event Handler... 2 Create Dynamic Handler... 2 Modify dynamic handler... 5 Execute attach-event action... 5 Detach Event Handler...

More information

Causeway ECM Team Notifications. Online Help. Online Help Documentation. Production Release. February 2016

Causeway ECM Team Notifications. Online Help. Online Help Documentation. Production Release. February 2016 Causeway ECM Team Notifications Online Help Production Release February 2016 Causeway Technologies Ltd Comino House, Furlong Road, Bourne End, Buckinghamshire SL8 5AQ Phone: +44 (0)1628 552000, Fax: +44

More information

HPE IMC APM SQL Server Application Monitor Configuration Examples

HPE IMC APM SQL Server Application Monitor Configuration Examples HPE IMC APM SQL Server Application Monitor Configuration Examples Part number: 5200-1353 Software version: IMC APM 7.2 (E0401) Document version: 1 The information in this document is subject to change

More information

One Schema In Sql Server 2005 Management >>>CLICK HERE<<<

One Schema In Sql Server 2005 Management >>>CLICK HERE<<< One Schema In Sql Server 2005 Management Studio 2008 Database As a database increases in size full database backups take more time to finish and require more When you specify a back up task by using SQL

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

ER/Studio Business Architect

ER/Studio Business Architect Product Documentation ER/Studio Business Architect New Features Guide Version 1.6.1 Published February 2010 CORPORATE HEADQUARTERS EMEA HEADQUARTERS ASIA-PACIFIC HEADQUARTERS 100 CALIFORNIA STREET 12TH

More information

RSA NetWitness Logs. Sophos Enterprise Console Last Modified: Friday, July 21, Event Source Log Configuration Guide

RSA NetWitness Logs. Sophos Enterprise Console Last Modified: Friday, July 21, Event Source Log Configuration Guide RSA NetWitness Logs Event Source Log Configuration Guide Sophos Enterprise Console Last Modified: Friday, July 21, 2017 Event Source Product Information: Vendor: Sophos Event Source: Enterprise Console,

More information

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework

BlackBerry Developer Summit. A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework BlackBerry Developer Summit A02: Rapid Development Leveraging BEMS Services and the AppKinetics Framework Page 2 of 21 Table of Contents 1. Workbook Scope... 4 2. Compatibility... 4 3. Source code download

More information

Hill s Pet Nutrition Admin Center Guide

Hill s Pet Nutrition Admin Center Guide Table of Contents 1 Introduction... 3 1.1 Background... 3 1.2 User Types/Roles... 3 1.3 General Navigation... 3 1.3.1 Sign In... 3 1.3.2 Sign Out... 5 1.3.3 Role Navigation... 5 2 Supervisor Role... 7

More information

Proventeq Migration Accelerator - Installation Guide. Version: 6.4

Proventeq Migration Accelerator - Installation Guide. Version: 6.4 Proventeq Migration Accelerator - Installation Guide Version: 6.4 Proventeq Ltd 23 April 2018 Table of Contents 1. SYSTEM REQUIREMENTS... 3 1.1 MIGRATION ACCELERATOR APPLICATION SERVER... 3 1.2 MIGRATION

More information

Use Webcam in Web Pages

Use Webcam in Web Pages Use Webcam in Web Pages Contents Introduction... 2 Preparation of using jpegcam... 2 Create a PHP web project... 2 Add JavaScript Library... 3 Add library files... 3 Prepare folder for saving uploaded

More information

Using SQL-server as database engine

Using SQL-server as database engine This tutorial explains on a step by step base how to configure YDOC-Insights for usage with a SQL-server database. (How to manage SQL-server itself is not part of this tutorial) CONTENTS CONTENTS 1 1.

More information

IQCare Troubleshooting Guide

IQCare Troubleshooting Guide Last updated: January 17, 2013 Table of Contents General... 3 Q: Is IQCare an internet application? Why does it run on a browser?... 3 Q: What are the machine requirements for IQCare to run with good performance?...

More information

MX-Contact Instruction Sheet Setting up SQL Replication SQL 2005

MX-Contact Instruction Sheet Setting up SQL Replication SQL 2005 1 Introduction The purpose of this Instruction Sheet is to describe how to set up SQL Replication from a SQL Server 2005 Database to a SQL Server 2005 Express Database so that MX-Contact Enterprise Edition

More information

V4.1. CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS. INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA

V4.1. CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS. INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA V4.1 CtxUniverse INSTALLATION GUIDE BY ADRIAN TURCAS INFRALOGIC INC. #412c-1255 Phillips Square, H3B 3G1 MONTREAL, CANADA 2016-11-08 Table of Contents 1 System requirements...3 2 IIS installation...4 3

More information

EchoOneApp Security. Overview. Getting Started. Users and Groups. Creating Users and Groups. Users:

EchoOneApp Security. Overview. Getting Started. Users and Groups. Creating Users and Groups. Users: EchoOneApp Security Overview EchoOneApp has an advanced, self-contained security system that allows a full range of permissions to be applied at both the user and group level. Access can be granted to

More information

RFGEN BEHIND THE SCENES

RFGEN BEHIND THE SCENES Version 4.1 An Inside Look Designing in a what you see is what you get (WYSIWYG) environment is perhaps the most assuring method of developing a solution which will require minimal to no adjustment once

More information

SQL Server Deployment Installation Manual. Call a Hygiena representative for more information or support

SQL Server Deployment Installation Manual. Call a Hygiena representative for more information or support SQL Server Deployment Installation Manual Call a Hygiena representative for more information or support 1.805.388.8007 Why SQL Server? Performance Quicker performance with reporting due to querying Security

More information

Configuration Guide. Version 1.5.9

Configuration Guide. Version 1.5.9 Configuration Guide Version 1.5.9 Copyright TeamExpand 22/07/2015 1. Overview 2 Table of contents 1. Overview... 3 1.1 Purpose... 3 1.2 Preconditions... 3 1.3 Applying changes... 5 1.3.1 Sync via UI...

More information

USER GUIDE. Enterprise Calendar. User Management 8/3/ N. Third Street, Suite 200, Harrisburg, PA Phone:

USER GUIDE. Enterprise Calendar. User Management 8/3/ N. Third Street, Suite 200, Harrisburg, PA Phone: USER GUIDE Enterprise Calendar User Management 8/3/2016 30 N. Third Street, Suite 200, Harrisburg, PA 17101 Phone: 717-773-4750 CHANGE HISTORY Author Date Version Change PAI 08/03/2016 1.0 Initial Version

More information

How to read/write text file

How to read/write text file How to read/write text file Contents Use StreamWriter... 1 Create button click event handler... 2 Create StreamWriter... 3 Write to file... 5 Close file... 8 Test file writing... 9 Use StreamReader...

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

Step-by-Step Guide to Ansur Executive 3.0 Installation With or without Electronic Signatures

Step-by-Step Guide to Ansur Executive 3.0 Installation With or without Electronic Signatures Step-by-Step Guide to Ansur Executive 3.0 Installation With or without Electronic Signatures Ansur with Electronic Signatures Background: Electronic signature is a new feature that is implemented in Ansur

More information

Module 14: SQL Injection

Module 14: SQL Injection Module 14: SQL Injection Objective The objective of this lab is to provide expert knowledge on SQL Injection attacks and other responsibilities that include: Understanding when and how web application

More information

Manage Administrators and Admin Access Policies

Manage Administrators and Admin Access Policies Manage Administrators and Admin Access Policies Role-Based Access Control, on page 1 Cisco ISE Administrators, on page 1 Cisco ISE Administrator Groups, on page 3 Administrative Access to Cisco ISE, on

More information

Product Documentation

Product Documentation Product Documentation Configuring Citrix XenDesktop Imprivata OneSign 5.5 SP1 Imprivata Confirm ID 5.5 SP1 2018 Imprivata, Inc. All Rights Reserved. This document includes information about configuring

More information

(B) Execute SMS TCP MODBUS Interface Application

(B) Execute SMS TCP MODBUS Interface Application Security Management System software generates notifications which indicate the state of various health parameters eg disk failure, one or more cameras offline etc. These notifications can be exposed as

More information

Side-channel attacks (and blind SQL injections)

Side-channel attacks (and blind SQL injections) Side-channel attacks (and blind SQL injections) Security 1 2018-19 Università Ca Foscari Venezia www.dais.unive.it/~focardi secgroup.dais.unive.it Introduction It is often the case that applications have

More information

Copyright Tools4ever B.V. All rights reserved.

Copyright Tools4ever B.V. All rights reserved. Copyright Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means without the written permission of Tools4ever. DISCLAIMER

More information

Joomla Installer User Guide. Version 1.0

Joomla Installer User Guide. Version 1.0 Joomla Installer User Guide Version 1.0 Contents 0. Document History... 3 1. Introduction... 4 1.1. Navigation... 5 2. Install... 6 3. Uninstall... 8 4. Go to... 9 5. Manage... 10 6. Application Changes...

More information

Avigilon Control Center Server User Guide. Version 5.8

Avigilon Control Center Server User Guide. Version 5.8 Avigilon Control Center Server User Guide Version 5.8 2006-2016, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, AVIGILON CONTROL CENTER and ACCAVIGILON, the AVIGILON logo, AVIGILON

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

Using. Safran Planner SQL System Administration. Safran Planner SQL version 4.1

Using. Safran Planner SQL System Administration. Safran Planner SQL version 4.1 Using Safran Planner SQL System Administration Safran Planner SQL version 4.1 Copyright (c) 1999-2009, Safran Software Solutions AS. All Rights reserved. Accuracy Although every effort has been made to

More information

Coveo Platform 7.0. Microsoft SharePoint Legacy Connector Guide

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

More information

FORUM Business Online Banking

FORUM Business Online Banking FORUM Business Online Banking FORUM Business Online Banking has a new look but still offers the same level of service and security. Complete privacy, controlled through encryption and passwords, ensures

More information

The EDGE Estimator v12 Network Database Install

The EDGE Estimator v12 Network Database Install The EDGE Estimator v12 Network Database Install Table of Contents Prerequisites... 1 Installing SQL Express 2014 on a server... 2 Configuring SQL... 7 Restoring your Estimating Database... 8 Setting up

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

Automation Anywhere Enterprise 10 LTS

Automation Anywhere Enterprise 10 LTS Automation Anywhere Enterprise 10 LTS Document Version: 1.3 Installation Guide Date of Publication: 15 th November, 2016 Update(s) to this document edition: Table of Contents 1. Client Prerequisites Processor

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

H3C Intelligent Management Center

H3C Intelligent Management Center H3C Intelligent Management Center TACACS+ Authentication Manager Administrator Guide New H3C Technologies Co., Ltd. http://www.h3c.com.hk Software version: IMC TAM 7.3 (E0501) Document version: 5PW105-20170515

More information

TROUBLESHOOTING ERRORS/ISSUES ASSOCIATED WITH THE CONNECTIVITY OF ONESOURCE FBT TO MICROSOFT SQL SERVER

TROUBLESHOOTING ERRORS/ISSUES ASSOCIATED WITH THE CONNECTIVITY OF ONESOURCE FBT TO MICROSOFT SQL SERVER TROUBLESHOOTING ERRORS/ISSUES ASSOCIATED WITH THE CONNECTIVITY OF ONESOURCE FBT TO MICROSOFT SQL SERVER IMPORTANT: Microsoft SQL Server is a product which is used in conjunction with ONESOURCE FBT. The

More information

Chime for Lync High Availability Setup

Chime for Lync High Availability Setup Chime for Lync High Availability Setup Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation

More information

29 March 2017 SECURITY SERVER INSTALLATION GUIDE

29 March 2017 SECURITY SERVER INSTALLATION GUIDE 29 March 2017 SECURITY SERVER INSTALLATION GUIDE Contents 1. Introduction... 2 1.1 Assumptions... 2 1.2 Prerequisites... 2 2. Required setups prior the Security Server Installation... 3 1.1 Create domain

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information