Difference between revisions of "SHOWHELP()"

From Lianjapedia
Jump to: navigation, search
(Created page with "==Purpose== Function to display help information in a popup Help dialog ==Syntax== SHOWHELP(<expC1>, <expC2> [, <expC3>]) ==See Also== GETFILE(), SHOWDOCUMENT() ==D...")
 
Line 3: Line 3:
  
 
==Syntax==
 
==Syntax==
SHOWHELP(<expC1>, <expC2> [, <expC3>])
+
SHOWHELP(<expC1>, <expC2> [, <expC3> [, <expL>]])
  
 
==See Also==
 
==See Also==
Line 20: Line 20:
 
|valign="top"|<expC3>||Help topic.  SHOWHELP() will search for this topic in the Help table's index and display the text from the HELPTEXT memo field.  If the topic is not found, a message will be displayed in the Help dialog: 'No help found for the specified topic.'  If <expC3> is not specified, the first record (in the index) from the Help table will be displayed.
 
|valign="top"|<expC3>||Help topic.  SHOWHELP() will search for this topic in the Help table's index and display the text from the HELPTEXT memo field.  If the topic is not found, a message will be displayed in the Help dialog: 'No help found for the specified topic.'  If <expC3> is not specified, the first record (in the index) from the Help table will be displayed.
 
|-
 
|-
 +
|valign="top"|<expL>||Show buttons flag.  If <expL> is .T. navigation buttons to move between Help topics will be displayed at the bottom of the dialog.  If <expL> is .F. or not specified, no buttons are displayed.
 
|}
 
|}
  
Line 27: Line 28:
 
<code lang="recital">
 
<code lang="recital">
 
open database southwind
 
open database southwind
showhelp("Help for Employees Page","lianjademo_help","page_employees")
+
showhelp("Help for Employees Page","lianjademo_help","page_employees",.T.)
 
</code>
 
</code>
  
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]

Revision as of 08:09, 20 March 2013

Purpose

Function to display help information in a popup Help dialog

Syntax

SHOWHELP(<expC1>, <expC2> [, <expC3> [, <expL>]])

See Also

GETFILE(), SHOWDOCUMENT()

Description

The SHOWHELP() function displays help information in a popup dialog.

Parameter Description
<expC1> Help dialog title
<expC2> Help table name.
The table should have the following structure:
HELPTOPIC Character(60) Description 'Help topic'
HELPTEXT Memo Description 'Help text'
and the following index tag:
Tag: HELPTOPIC
Key: helptopic
<expC3> Help topic. SHOWHELP() will search for this topic in the Help table's index and display the text from the HELPTEXT memo field. If the topic is not found, a message will be displayed in the Help dialog: 'No help found for the specified topic.' If <expC3> is not specified, the first record (in the index) from the Help table will be displayed.
<expL> Show buttons flag. If <expL> is .T. navigation buttons to move between Help topics will be displayed at the bottom of the dialog. If <expL> is .F. or not specified, no buttons are displayed.

The SHOWHELP() functionality is also provided in the Lianja system object showhelp() method.

Example

open database southwind
showhelp("Help for Employees Page","lianjademo_help","page_employees",.T.)