Revelation Window Variables not assigned on F2 (AREV Specific)
At 30 MAY 2001 09:02:49PM Jeff Ritchie wrote:
Have a subroutine which is fired on F2 from a Revelation Window field.
The following line is falling over with a unassigned variable message:
WC_DISPLAY_ACTION%=REDISPLAY.ALL$
Is this a bug in Revelation, or is this specific code to the package l am maintaining (i.e not standard Revelation), or am l doing something completely lame.
Thanks in advance for any help.
At 30 MAY 2001 11:26PM Curt Putnam wrote:
Have you $Inserted Window_Common% ????
At 31 MAY 2001 12:05AM Jeff Ritchie wrote:
Thanks for your reply Curt,
Yes have both the following insert files in the subroutine
$INSERT SYSINCLUDE, WINDOW_COMMON%
$INSERT SYSINCLUDE, WINDOW.CONSTANTS
At 31 MAY 2001 10:55AM Don Miller - C3 Inc. wrote:
Assuming that you have the $INSERT blocks included, check the spelling of REDISPLAY.ALL. My variable is:
EQU REDISPLAY.ALL$ TO 7
Try setting the common variable to 7. If you get an error then the common variable WC_DISPLAY_ACTION% might be misspelled or is somehow not assigned or has been cleared via a CLEAR COMMON statement somewhere.
Don Miller
C3 Inc.
At 03 JUN 2001 07:12PM Jeff Ritchie wrote:
Hey thanks Don,
Set WC_DISPLAY_ACTION% to 7 and works.