Home > Archive > Clipper > January 2006 > error code ( runtime ) on clipper
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
error code ( runtime ) on clipper
|
|
| sukasukabo@gmail.com 2006-01-10, 3:55 am |
| anybody could help me please
i have runtime error
i'm using clipper 5.3
here's the detail
step 1.
* Compiling process
C:\Clipper5\BIN>clipper test /b
Clipper (R) 5.2d
Copyright (c) 1985-1993, Computer Associates International, Inc.
Microsoft C Floating Point Support Routines
Copyright (c) Microsoft Corp 1984-1987. All Rights Reserved.
319K available
Compiling test.PRG
Code size 57734, Symbols 9072, Constants 17642
(* result --> test.obj , no message shown up)
step 2.
* Linking Process
C:\Clipper5\BIN>if not errorlevel 1 rtlink file rups1
..RTLink for Clipper Dynamic Overlay Linker / Pre-Linker Version 3.14B
(C) Copyright Pocket Soft Inc., 1988-1991. All Rights Reserved.
253K
(* result --> test.exe , no message shown up)
step 3.
* when execute test.exe, this message shown up
RDDREGISTE <0> Internal error 9002
| |
| s_boomer 2006-01-10, 3:55 am |
| sukasukabo@gmail.com wrote:
> anybody could help me please
> i have runtime error
> i'm using clipper 5.3
> here's the detail
>
>
> step 1.
> * Compiling process
> C:\Clipper5\BIN>clipper test /b
> Clipper (R) 5.2d
> Copyright (c) 1985-1993, Computer Associates International, Inc.
> Microsoft C Floating Point Support Routines
> Copyright (c) Microsoft Corp 1984-1987. All Rights Reserved.
> 319K available
> Compiling test.PRG
> Code size 57734, Symbols 9072, Constants 17642
> (* result --> test.obj , no message shown up)
>
>
> step 2.
> * Linking Process
> C:\Clipper5\BIN>if not errorlevel 1 rtlink file rups1
> .RTLink for Clipper Dynamic Overlay Linker / Pre-Linker Version 3.14B
>
> (C) Copyright Pocket Soft Inc., 1988-1991. All Rights Reserved.
>
>
> 253K
> (* result --> test.exe , no message shown up)
>
>
> step 3.
> * when execute test.exe, this message shown up
>
>
> RDDREGISTE <0> Internal error 9002
In your leading sentence you state you are using Clipper 5.3, but the
compling process reports that you are using Clipper 5.2d. There are no
RDD.... functions in 5.2.
| |
| Dave Pearson 2006-01-10, 3:55 am |
| * s_boomer <s_boomer@sbcglobal.net>:
> [SNIP] There are no
> RDD.... functions in 5.2.
The 5.2e NG that I've got here begs to differ:
,----[ Excerpt from 5.2e NG ]
| RDD Reference -- Overview
| ------------------------------------------------------------------------------
| [SNIP]
| RDDLIST() Return an array of available Replaceable Database Drivers
| RDDNAME() Return name of RDD active in current or specified work area
| RDDSETDEFAULT() Set or return the default RDD for the application
| [SNIP]
`----
--
Dave Pearson | OSLib - Timeslice release functions.
http://www.davep.org/ | eg - Norton Guide reader for Linux.
http://www.davep.org/clipper/ | weg - Norton Guide reader for Windows.
http://www.davep.org/norton-guides/ | dgscan - DGROUP scanner for Clipper.
| |
| sukasukabo@gmail.com 2006-01-10, 3:55 am |
| yup, sorry, you say exactly right
i was wrong, i thought i used version 5.3
if rdd... function doesn't exist in ver 5.2d , how come those message
shown up ?
on detail, on what part should i check the program , to fix the error ?
thx a lot
suk
s_boomer wrote:
> sukasukabo@gmail.com wrote:
>
> In your leading sentence you state you are using Clipper 5.3, but the
> compling process reports that you are using Clipper 5.2d. There are no
> RDD.... functions in 5.2.
| |
| Stephen Quinn 2006-01-10, 3:55 am |
| suk
Check your PATH/INCLUDE/LIB statements in autoexec.(nt/bat) or in the rmake file
- to see which version of Clipper libraries it's finding (assuming you
have 5.2 & 5.3 installed).
Update to 5.2e (5.2d was the second buggiest version IIRC after 5.2c)
Show us the link script.
HTH
Steve
|
|
|
|
|