Difference between revisions of "SET INSTRUCT"

From Recital Documentation Wiki
Jump to: navigation, search
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=SET INSTRUCT=
 
 
 
==Class==
 
Recital Terminal Developer Environment
 
 
 
 
==Purpose==
 
==Purpose==
 
Enables or disables pop-up help
 
Enables or disables pop-up help
Line 12: Line 5:
 
==Syntax==
 
==Syntax==
 
SET INSTRUCT ON | OFF | (<expL>)
 
SET INSTRUCT ON | OFF | (<expL>)
 +
 +
 +
==See Also==
 +
[[@...MENU]], [[MENU]], [[SET HELPWINDOW]]
  
  
 
==Description==
 
==Description==
 
If INSTRUCT is set ON, then the pop-up help windows which have been set up with the @...MENU HELPFILE or MENU HELPFILE command can be activated.  When INSTRUCT is set OFF, these help facilities are disabled.  By default, SET INSTRUCT is OFF.
 
If INSTRUCT is set ON, then the pop-up help windows which have been set up with the @...MENU HELPFILE or MENU HELPFILE command can be activated.  When INSTRUCT is set OFF, these help facilities are disabled.  By default, SET INSTRUCT is OFF.
 
 
==See Also==
 
@...MENU HELPFILE, SET HELPWINDOW TO, MENU HELPFILE
 
  
  
 
==Example==
 
==Example==
<pre>
+
<code lang="recital">
 
procedure main
 
procedure main
// Procedure to display main menu
+
  // Procedure to display main menu
//
+
  //...
 
return
 
return
  
 
set instruct on
 
set instruct on
menu helpfile main.hlp format main</pre>
+
menu helpfile main.hlp format main</code>
  
  
 
==Products==
 
==Products==
Recital Terminal Developer
+
Recital  
 +
[[Category:Documentation]]
 +
[[Category:Commands]]
 +
[[Category:Set_Commands|INSTRUCT]]
 +
[[Category:Terminal Environment]]
 +
[[Category:Terminal Environment Set Commands]]

Latest revision as of 16:02, 23 November 2009

Purpose

Enables or disables pop-up help


Syntax

SET INSTRUCT ON | OFF | (<expL>)


See Also

@...MENU, MENU, SET HELPWINDOW


Description

If INSTRUCT is set ON, then the pop-up help windows which have been set up with the @...MENU HELPFILE or MENU HELPFILE command can be activated. When INSTRUCT is set OFF, these help facilities are disabled. By default, SET INSTRUCT is OFF.


Example

procedure main
  // Procedure to display main menu
  //...
return
 
set instruct on
menu helpfile main.hlp format main


Products

Recital