-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclarifyID_help.asp
128 lines (103 loc) · 5.06 KB
/
clarifyID_help.asp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<%@ language="JavaScript" %>
<!DOCTYPE html>
<!--
///////////////////////////////////////////////////////////////////////////////
// Product : Online Tools(tm)
//
// Series : Dovetail Software Development Series(tm)
//
// Name : clarifyID_help.asp
//
// Description : Help page for the Clarify Form Identifier
//
// Author : Dovetail Software, Inc.
// 4807 Spicewood Springs Rd, Bldg 4 Suite 200
// Austin, TX 78759
// (512) 610-5400
// EMAIL: [email protected]
// www.dovetailsoftware.com
//
// Platforms : This version supports Clarify 9.0 and later
//
// Copyright (C) 2001-2012 Dovetail Software, Inc.
// All Rights Reserved.
///////////////////////////////////////////////////////////////////////////////
-->
<html>
<head>
<meta http-equiv="expires" content="0">
<meta name="KeyWords" content="">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="Shortcut Icon" href="favicon.ico">
<link href="css/<%=Request.Cookies("boltTheme")%>bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--#include file="inc/config.inc"-->
<!--#include file="inc/adojavas.inc"-->
<%
var sPageTitle = "Child Forms/Tabs";
var sPageType = "Forms";
var FSO = Server.CreateObject("Scripting.FileSystemObject");
var udl_file = FSO.GetFile(dbConnect.replace("File Name=","").replace(/\\/g,"\\\\"));
%>
<!--#include file="inc/ddonline.inc"-->
<!--#include file="inc/quicklinks.inc"-->
</head>
<body>
<!--#include file="inc/navbar.inc"-->
<div class="container-fluid">
<div class="row">
<div id="headerContainer" class="col-8 offset-2">
<h3 class="mb-4">Help page for the Clarify Form Identifier</h3>
<h4>Background</h4>
<p>On occasion, while working in the Clarify Classic Client, we come across a form that's not familiar to us, but we need to do some work on. It could be a baseline or a custom form. Trying to find this form in UI Editor is not always easy. It's common that the form name and/or title aren't very descriptive (this even happens on baseline forms). </p>
<p>The <strong>Clarify Form Identifier</strong> can help. It uses the HTML Help feature built into the Clarify Client to help you determine the exact form ID number. </p>
<h4>Usage</h4>
<p>From within the Clarify Client, press the F1 key on a form (or use the Help menu option). <br/>
You should see a browser window open that looks like this:</p>
<img src="img/bolt_help.jpg" alt="form identifier" />
<h4>Requirements</h4>
<ul>
<li>IIS7 or higher</li>
<li>HTTP Redirect component of IIS</li>
</ul>
<p>In IIS Manager, you should see the HTTP Redirect component:</p>
<img src="img/iis.png" alt="IIS Redirection component" />
<h4 class="mt-4">If the HTTP Redirection component is not installed</h4>
<p>In Windows Server, open Server Manager -> Roles -> Web Server -> Add Role Services -> Common HTTP Features -> HTTP Redirection. Check the box, click Next, click Install.</p>
<p>In Windows 7, Start -> Control Panel -> Programs and Features -> Turn Windows Features on or off. Expand Internet Information Services, then World Wide Web Services, then Common Http Features. Select HTTP Redirection, and then click OK.</p>
<p>You can also use the <a href="http://www.microsoft.com/web/downloads/platform.aspx">Web Platform Installer</a> to install HTTP Redirection. Click the Web Platform tab and under the Web Server heading click Customize. In the Common HTTP Features section, check HTTP Redirection and click Install.</p>
<h3 class="my-4">Setup</h3>
<h4>Help enable your database</h4>
<p>Import the $bolt/files/help.dat file using dataex, DIET, or UI Editor </p>
<h4>Configure your Clarify Client</h4>
<ul>
<li>In clarify.exe: Desktop --> My setup --> My preferences</li>
<li>set the web server to: http://server/bolt/ClarifyID (where server is the web server running BOLT)</li>
<li>set the help file location to be blank</li>
<li>set the on-line help drop down to be HTML Help</li>
</ul>
<img src="img/preferences.jpg" alt="preferences" />
<h4 class="mt-4">Need more help?</h4>
<p>Contact us at <a href=http://support.dovetailsoftware.com>support.dovetailsoftware.com</a>.</p>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="js/jquery-3.0.0.min.js"></script>
<script type="text/javascript" src="js/tether.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var path = window.location.pathname;
var page = path.substr(path.lastIndexOf('/')+1);
$("ul.navbar-nav li a[href$='" + page + "']").parent().addClass("active");
$(".navbar").find(".connected").text("<%=connect_info%>");
document.title = "Bolt: <%=sPageTitle%>";
});
</script>
</html>
<%
FSO = null;
udl_file = null;
%>