Unrecognised CATALYST Code (AREV Specific)
At 28 AUG 2001 11:31:36AM C Mansutti wrote:
Hi All,
I have a little upgrade routine that once it does its updates it then displays a message like..
msg("The upgrade is complete you will now be logged off")
This is followed by a perform "Logoff"
Simple stuff really….
However, when this message is displayed it gets the following message on the top.
W759
"{Quaver Symbol}" is an unrecognised CATALYST code
]The quaver symbol is a Char(13)
What is it trying to tell me?
I know I've messed up somewhere earlier but where should I look?
TIA
Claude
Claude
At 29 AUG 2001 02:02AM [url=http://www.sprezzatura.com]The Sprezzatura Group[/url] wrote:
Hi Claude, try -
CALL MSG("Ladies and Gentlemen - The End","","","")
PERFORM "OFF"
Uncertain about your LOGOFF record in VOC - check this is VERB3 on line 1 and OFF on line 4
World Leaders in all things RevSoft
At 29 AUG 2001 08:17AM C Mansutti wrote:
Tried the Call, Got the same result.
It seems like I'm activating some catalyst in the process
Performing off or logoff gives same result..
I was wondering if the Error code means anything
Claude
At 29 AUG 2001 08:25AM [url=http://www.sprezzatura.com" onMouseOver=window.status=Click here to visit our web site?';return(true)]The Sprezzatura Group[/url] wrote:
Guessing - are you using DATA statements? The message means that you've called Catalyst with an unrecognised command .
World Leaders in all things RevSoft
At 29 AUG 2001 08:12PM C Mansutti wrote:
Sorry Andrew,
I'm not using data statements, nor are there any Catalyst commands, that's what makes it so interesting.
Thanks Sprezz for your help and , I'll just get on with stripping the code until I find it. Just thought I'd ask if anybody had seen a similar command.
Is there a detailed list of all the error codes and what they mean floating around?
ta
Claude
At 30 AUG 2001 09:00AM Don Miller - C3 Inc. wrote:
Claude ..
The INSERT records FSnnnn contain error codes and explanations. FS100, for example is 100-199, etc.
HTH
Don Miller
C3 Inc.
At 30 AUG 2001 10:01AM [url=http://www.sprezzatura.com" onMouseOver=window.status=Click here to visit our web site?';return(true)]The Sprezzatura Group[/url] wrote:
Simple answer - "No"
As Don points out, filing system errors can be found in the SysInclude table, Program Errors under programmer control (as in - displaying an error message) are all found in SysMessages but with no explanation as to why they may be called, and system errors are stored in REVERROR.000.
For some reason, in your case, Catalyst (which is the only routine to call W759) has been called with a tilde as the Code, so it returns this error. So either catalyst is being called with a tilde or an Alt-7 and the \00\ is being chewed up.
World Leaders in all things RevSoft
At 30 AUG 2001 02:30PM Warren wrote:
What happens if you use the RBASIC "LOGOFF" statement instead?