Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Lorenzo Fiorini
On Jan 15, 2008 10:15 AM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > It's working for me without any problem. Could it be that DYNAMIC and REQUEST "must" be in the same prg? If I put the REQUESTs in the same prg of DYNAMIC declaration it works. Sorry, the hbrun problem went away after a

Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Francesco Saverio Giudice
January 15, 2008 10:33 AM Subject: Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error On Jan 15, 2008 10:15 AM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: It's working for me without any problem. aaahh :) In both cases it works perfectly. I cannot say what is your pr

Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Lorenzo Fiorini
On Jan 15, 2008 10:15 AM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > It's working for me without any problem. aaahh :) > In both cases it works perfectly. I cannot say what is your > problem but seems to be related to some other things. F.e. > mixed libraries from different comp

Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Przemyslaw Czerpak
On Tue, 15 Jan 2008, Lorenzo Fiorini wrote: > On Jan 15, 2008 9:41 AM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > > I need self contain example. Can I see tt52.prg? > > Was hbrun linked with HB_EXECVP()? > Here is tt52.prg: [...] It's working for me without any problem. > I've added HB_EXECV

Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Lorenzo Fiorini
On Jan 15, 2008 9:41 AM, Przemyslaw Czerpak <[EMAIL PROTECTED]> wrote: > I need self contain example. Can I see tt52.prg? > Was hbrun linked with HB_EXECVP()? Here is tt52.prg: proc main() local aPID:={}, i ? "Started" for i:=1 to 5 ? i aadd( aPID, HB_EXECVP( "hbrun" ) ) // here I use an Har

Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Przemyslaw Czerpak
On Tue, 15 Jan 2008, Lorenzo Fiorini wrote: > I'm trying to use the function HB_EXECVP in a dynamic hrb but I get:: > Unrecoverable error 9001: > Called from __HRBLOAD(0) > I've created a test but it dies: > hbcmp -gh tt52.prg > hbrun tt52.hrb > The same test works normally in executable format: >

Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Lorenzo Fiorini
On Jan 15, 2008 9:20 AM, Francesco Saverio Giudice <[EMAIL PROTECTED]> wrote: > did you need to add a REQUEST HB_EXECVP in your main program, otherwise it > will not be linked as main program doesn't know that you want to use and > linker doesn't add it to executable. Yes I've tried it also. bes

Re: [Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Francesco Saverio Giudice
Hi Lorenzo, - Original Message - From: "Lorenzo Fiorini" <[EMAIL PROTECTED]> To: "Harbour Project Main Developer List." Sent: Tuesday, January 15, 2008 8:48 AM Subject: [Harbour] HB_EXECVP and __HRBLOAD(0) error I'm trying to use the function HB_EXE

[Harbour] HB_EXECVP and __HRBLOAD(0) error

2008-01-15 Thread Lorenzo Fiorini
I'm trying to use the function HB_EXECVP in a dynamic hrb but I get:: Unrecoverable error 9001: Called from __HRBLOAD(0) I've created a test but it dies: hbcmp -gh tt52.prg hbrun tt52.hrb The same test works normally in executable format: hbmk -n -gtcgi tt52.prg What am I doing wrong? best