For Programmers: Free Programming Magazines  


Home > Archive > Clipper > August 2004 > Runtime Error R6003 solution









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 Runtime Error R6003 solution
mweitzel

2004-08-09, 3:55 pm

I have a error solution whith direkt changing exe-file whith hex-editor.

search for B8 52 17 8B CA 33 D2 F7 F1 and change with

B8 52 17 8B CA 33 D2 90 90

or search for 2B D0 8B CA 33 D2 B8 A8 16 F7 F1 and change with 2B D0 8B CA
33 D2 B8 A8 16 90 90

then the error does not exist.


frank van nuffel

2004-08-09, 3:55 pm

Hi,

Interesting topic; could it work with compressed exe's too?
I tried to find either of the two sequences without succes
in an exe that i suspect was compressed by blinkinc's
shrinker

frank

"mweitzel" <marco.weitzel@rb-vogelsberg.de> wrote in message
news:cf560a1c58c8b93ead970622b8514559@lo
calhost.talkaboutprogramming.com...
> I have a error solution whith direkt changing exe-file whith hex-editor.
>
> search for B8 52 17 8B CA 33 D2 F7 F1 and change with
>
> B8 52 17 8B CA 33 D2 90 90
>
> or search for 2B D0 8B CA 33 D2 B8 A8 16 F7 F1 and change with 2B D0 8B CA
> 33 D2 B8 A8 16 90 90
>
> then the error does not exist.




mweitzel

2004-08-10, 8:55 am

i dont no i have no compressed exe to look with hex editor.
It is possible that the hex-combination is another.

You can do this but the work is a lot.

Search for F7 F1 This you can find a lot in the exe-File.

Now you must change the first and try. Is it not going change back and try
with the second, and so on. One is the correct.

Sorry for my bad english i hope you understand.

frank van nuffel

2004-08-10, 8:55 am

----- Original Message -----
From: "mweitzel" <marco.weitzel@rb-vogelsberg.de>
Newsgroups: comp.lang.clipper
Sent: Tuesday, August 10, 2004 11:35 AM
Subject: Re: Runtime Error R6003 solution

> i dont no i have no compressed exe to look with hex editor.
> It is possible that the hex-combination is another.
>
> You can do this but the work is a lot.
>
> Search for F7 F1 This you can find a lot in the exe-File.
>
> Now you must change the first and try. Is it not going change back and try
> with the second, and so on. One is the correct.
>
> Sorry for my bad english i hope you understand.


Thank for the info; at least i now see it can be done;
nice trick anyway

best regards

frank


Thomas Braun

2004-08-10, 3:55 pm

On Mon, 09 Aug 2004 09:53:25 -0400, mweitzel wrote:

> I have a error solution whith direkt changing exe-file whith hex-editor.
>
> search for B8 52 17 8B CA 33 D2 F7 F1 and change with
>
> B8 52 17 8B CA 33 D2 90 90
>
> or search for 2B D0 8B CA 33 D2 B8 A8 16 F7 F1 and change with 2B D0 8B CA
> 33 D2 B8 A8 16 90 90
>
> then the error does not exist.


Did you try to find this sequence in any of the Clipper LIB files?

Maybe this way the error can be fixed once without patching every exe file
again and again after building it...

Thomas
--
Xbase++ FAQ : www.software-braun.de/xbasecentral/xbfaq/
Actual newspaper headline: Sex Education Delayed, Teachers Request Training
Andreas Moroder

2004-08-11, 8:55 am

Thomas Braun schrieb:

> On Mon, 09 Aug 2004 09:53:25 -0400, mweitzel wrote:
>
>
>
>
> Did you try to find this sequence in any of the Clipper LIB files?
>
> Maybe this way the error can be fixed once without patching every exe file
> again and again after building it...
>
> Thomas

Hello,

why not link __wait.obj instead ?

Bye
Andreas
mweitzel

2004-08-12, 8:55 am

This solution is for Users with no Source Code. If you have the source-code
you can link with wait4.obj.


Dave Pearson

2004-08-12, 8:55 am

* mweitzel <marco.weitzel@rb-vogelsberg.de>:

> This solution is for Users with no Source Code. If you have the
> source-code you can link with wait4.obj.


How does the solution differ from that offered by Attila Feher's div0.zip
that is pointed to in this group's wly VFAQ posting?

--
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.
mweitzel

2004-08-12, 8:55 am

i don't know the solution by Attila Feher

Dave Pearson

2004-08-12, 8:55 pm

* mweitzel <marco.weitzel@rb-vogelsberg.de>:

> i don't know the solution by Attila Feher


<URL:http://groups.google.com/groups?sel...%40news.onet.pl>
is where this was first discussed back in 2001. Attila then coded up a tool
based on that post <URL:http://groups.google.com/groups?th=b27140775983f774>
and it's been mentioned in the VFAQ <URL:http://www.davep.org/clipper/VFAQ/>
(posted here wly) ever since.

<URL:http://groups.google.com/groups?q=g...ring=d&filter=0>.

--
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.
mweitzel

2004-08-14, 8:55 pm

i don't know the solution by Attila Feher

Thomas Braun

2004-08-15, 3:55 am

On Mon, 09 Aug 2004 09:53:25 -0400, mweitzel wrote:

> I have a error solution whith direkt changing exe-file whith hex-editor.
>
> search for B8 52 17 8B CA 33 D2 F7 F1 and change with
>
> B8 52 17 8B CA 33 D2 90 90
>
> or search for 2B D0 8B CA 33 D2 B8 A8 16 F7 F1 and change with 2B D0 8B CA
> 33 D2 B8 A8 16 90 90
>
> then the error does not exist.


Did you try to find this sequence in any of the Clipper LIB files?

Maybe this way the error can be fixed once without patching every exe file
again and again after building it...

Thomas
--
Xbase++ FAQ : www.software-braun.de/xbasecentral/xbfaq/
Actual newspaper headline: Sex Education Delayed, Teachers Request Training
frank van nuffel

2004-08-15, 8:55 am

Hi,

Interesting topic; could it work with compressed exe's too?
I tried to find either of the two sequences without succes
in an exe that i suspect was compressed by blinkinc's
shrinker

frank

"mweitzel" <marco.weitzel@rb-vogelsberg.de> wrote in message
news:cf560a1c58c8b93ead970622b8514559@lo
calhost.talkaboutprogramming.com...
> I have a error solution whith direkt changing exe-file whith hex-editor.
>
> search for B8 52 17 8B CA 33 D2 F7 F1 and change with
>
> B8 52 17 8B CA 33 D2 90 90
>
> or search for 2B D0 8B CA 33 D2 B8 A8 16 F7 F1 and change with 2B D0 8B CA
> 33 D2 B8 A8 16 90 90
>
> then the error does not exist.




mweitzel

2004-08-15, 8:55 am

This solution is for Users with no Source Code. If you have the source-code
you can link with wait4.obj.


Dave Pearson

2004-08-15, 8:55 am

* mweitzel <marco.weitzel@rb-vogelsberg.de>:

> This solution is for Users with no Source Code. If you have the
> source-code you can link with wait4.obj.


How does the solution differ from that offered by Attila Feher's div0.zip
that is pointed to in this group's wly VFAQ posting?

--
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.
mweitzel

2004-08-15, 8:55 am

i dont no i have no compressed exe to look with hex editor.
It is possible that the hex-combination is another.

You can do this but the work is a lot.

Search for F7 F1 This you can find a lot in the exe-File.

Now you must change the first and try. Is it not going change back and try
with the second, and so on. One is the correct.

Sorry for my bad english i hope you understand.

mweitzel

2004-08-16, 8:55 am

i don't know the solution by Attila Feher

Andreas Moroder

2004-08-17, 3:55 pm

Thomas Braun schrieb:

> On Mon, 09 Aug 2004 09:53:25 -0400, mweitzel wrote:
>
>
>
>
> Did you try to find this sequence in any of the Clipper LIB files?
>
> Maybe this way the error can be fixed once without patching every exe file
> again and again after building it...
>
> Thomas

Hello,

why not link __wait.obj instead ?

Bye
Andreas
Dave Pearson

2004-08-18, 3:55 am

* mweitzel <marco.weitzel@rb-vogelsberg.de>:

> This solution is for Users with no Source Code. If you have the
> source-code you can link with wait4.obj.


How does the solution differ from that offered by Attila Feher's div0.zip
that is pointed to in this group's wly VFAQ posting?

--
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.
Dave Pearson

2004-08-18, 3:55 am

* mweitzel <marco.weitzel@rb-vogelsberg.de>:

> i don't know the solution by Attila Feher


<URL:http://groups.google.com/groups?sel...%40news.onet.pl>
is where this was first discussed back in 2001. Attila then coded up a tool
based on that post <URL:http://groups.google.com/groups?th=b27140775983f774>
and it's been mentioned in the VFAQ <URL:http://www.davep.org/clipper/VFAQ/>
(posted here wly) ever since.

<URL:http://groups.google.com/groups?q=g...ring=d&filter=0>.

--
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.
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com