E r g e b n i s / R e s u l t
Displays the Open Access Abandon message
B e s c h r e i b u n g / D e s c r i p t i o n
ABANDON displays the Open Access 'Abandon Changes' message box.
The developer does not have do anything but call the routine. It returns
a true or false value.
S y n t a x
Code:
boolean = call ('ABANDON') P a r a m e t e r
There are no parameters for this procedure
R e t u r n s
A boolean value is returned.
TRUE = the user has pressed F10 to abandon
FALSE = Escape has pressed
B e i s p i e l / E x a m p l e
Code:
attach 'ERRORS'
b = call('ABANDON')
if b = true
put 'Abandoning the changes'
else
put 'Carry on editing the record'
end if
detach 'ERRORS'