Very Thanks now all work fine

Is still correct follow  description of HB_GTRELOAD?
What happen with hb_gtreload in st MODE?
With relationship from hb_threadStart & hb_GTRELOAD '
Can you give me a simple sample of hb_gtreload in mt mode?

    + function HB_GTRELOAD( <cGtName> ) -> <lSuccess>
      This function allow to switch active GT driver at run time.
      It can be also used to simulate removed HB_NOSTARTUPWINDOW()
      functionality. F.e.:
         REQUEST HB_GT_WVT
         REQUEST HB_GT_NUL_DEFAULT
         proc main()
            // do some initializations...
            hb_gtReload( "WVT" )
            // rest of code...
         return
      Please remember that some GTs may refuse initialization due to
      missing required resources and instead of return FALSE they can
      interrupt program with internal error, just like at application
      startup so it's not guarantied that this function always returns
      HB_GTRELOAD in mt mode have support for optional 
      allocating independent console window by
      each thread. By default new thread inherits console Window from
      parent thread. But each thread can allocate its own console window
      by calling hb_gtReload( <cGtName> ) function, f.e. by:
         hb_gtReload( hb_gtVersion() )
      If GT driver supports such functionality then new it will allocate
      new console windows.
      Each console window has reference counter which is increased when
      new thread starts and decreased when hb_gtReload() is executed or
      thread terminates. When counter reach zero give console window is
      destroyed.


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Przemyslaw 
Czerpak
Sent: Wednesday, October 22, 2008 8:24 PM
To: Harbour Project Main Developer List.
Subject: Re: RE: RE: [Harbour] 2008-10-22 
05:03UTC+0200PrzemyslawCzerpak(druzus/at/priv.onet.pl)

On Wed, 22 Oct 2008, Massimo Belgrano wrote:
> Compile fine
> When run i receive open error test.dbf dos error 2

It's correct behavior. You need test.dbf file, f.e. from tests/
directory. Just copy it. Anyhow even error messages are good tests.
You should see ALERT() message in each GTWVT window.

> Now HBMK is aivable also for BCC?

It's .bat file with some limited functionality in comparison to
hbmk scripts which replaced bld*.bat files.
If I'll find spare time to make some cleanups in hbmk.prg then I'll
commit it to SVN. It should give similar to hb* script functionality
on platforms which does not support bourne shell. But it will have to
be updated for non-GCC based compilers. I added only BCC.

best regards,
Przemek
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to