At 06:47 PM 4/2/2008, you wrote:
Boy I know I've done this before but it doesn't seem to work.
I have a form with a button that I wish to turn off and on.
I have a scrolling region that has an on entry eep in the row
IF vRowEnable IS NULL THEN
PROPERTY MyButton VISIBLE 'FALSE'
ELSE
PROPERTY MyButton VISIBLE 'TRUE'
ENDIF
RETURN
This just doesn't seem to fire. I have RowEnable as a Form
Variable. If I just place another button on the form (for
testing) with PROPERTY MyButton VISIBLE 'FALSE' the button
does disappear.
Jan,
TRACE the entire thing and exactly what is going on in that
specific EEP.
-- start
SET TRACE ON
IF vRowEnable IS NULL THEN
PROPERTY MyButton VISIBLE 'FALSE'
ELSE
PROPERTY MyButton VISIBLE 'TRUE'
ENDIF
SET TRACE OFF
RETURN
-- end
Verify the Component ID "MyButton" and make sure that there
are no trailing blank spaces.
During the trace, watch the "vRowEnable" variable for the
actual value (NULL or NOT NULL).
Hope that gives some blues clues ...
Very Best R:egards,
Razzak.