ADDRESS null
OPTIONS 'TRAP'
SIGNAL ON HALT
SIGNAL ON SYNTAX
SIGNAL ON ERROR
CALL RXERR('ERROR|DISPLAY', '~!MSG')
rx = ''
rxtype.1 = 'HTML'
rxflags.1 = 'NOBORDER'
rxlabel.1 = 'Web page 1|Web page 2|'
rxval.1 = 'TEXT'
rxpos.1 = '1 10 20 400 10'
text.1 = 'http://www.microsoft.com'
text.2 = 'c:\program files\reginald\language.htm'
CALL RXCREATE('Rx', 1, 'HTML display', 'NOCLOSE|SETVAL')
DO FOREVER
CALL RXMSG()
IF rxid == '' THEN SIGNAL ERROR
END
syntax:
CALL CONDITION('M')
halt:
error:
CALL RXMSG(,'END')
EXIT
|