Directive file for send_email_about_obj com_tmplte
NO_EXPORT OBJECT ALL;
EXPORT OBJECT com_tmplte
UNIQUE_FIELD = "title"
WHERE "title like 'send_email_about_obj'"
ACTIONS = EXPORT
;
How to open a URL in a web browser using ClearBasic
Const url As String = "http://www.google.com"
Declare Sub ClfyPostWebBrowser(webAddress As String) 'This is a baseline Clarify Sub
'Open in Internet Explorer:
'
Sub OpenURL_Click()
ClfyPostWebBrowser url
End Sub
'Open in default browser:
'
Sub OpenURL_Click()
Dim taskID As Variant
taskID = Shell("explorer.exe " & url)
End Sub
Generate SQLPlus script from Clarify logfile
This awk script extracts all the ALTER and SELECT statements from a Clarify logfile, and
converts them into executable SQL statements. The output is ready to be executed in
SQLPlus without any manual intervention.
The generated SQL statenents are guaranteed to have the same execution/performance
characteristics as the statements which have been executed by Clarify. In other
words, if Clarify uses bind variables, the generated script will use bind variables
as well).
I've used this to test the performance of a set of actions without using the GUI.
Requires Oracle database to work.
Clarify Classic Client Quick Reference Guide
Here's a quick reference guide for user options, shortcuts, and keyboard navigation for the Clarify client.
http://www.clarifytoolbox.com/sites/default/files/ClarifyQuickReference.pdf
User-Defined List (Hgbst) utility
The HGBST Utility is a tool for visualizing user-defined lists (HGBST data). It’s a Windows command line application that connects to a Clarify database and allows for simple visualization of HGBST data. This is especially helpful when troubleshooting bad data.
It does not require the Dovetail SDK, nor is there any fee or license to use it.
It can:
- Output a tree-view display of all HGBST LISTS or a specific LIST or set of LIST
- Output the LIST tree for a given Element
- Output the LIST tree for a given Show (level)

Main Feed