Hi Przemek,
Wishing you a very nice holiday.
Brgds,
Viktor
On 2009.08.02., at 0:34, Przemyslaw Czerpak wrote:
Hi All,
I'll be offline for a week.
best regards,
Przemek
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-proje
-Messaggio Originale- Da: "Petr Chornyj"
A:
Data invio: domenica 2 agosto 2009 17.14
Oggetto: Re: [Harbour] Array access at C level
> HB_FUNC( TEST )
> {
> hb_retc( hb_parc( 1, 1 ) );
> }
HB_FUNC( TEST )
{
hb_retc( hb_parvc( 1, 1 ) );
}
Can I ask the reason for this Clipper co
-Messaggio Originale-
Da: "Petr Chornyj"
A:
Data invio: domenica 2 agosto 2009 17.14
Oggetto: Re: [Harbour] Array access at C level
> HB_FUNC( TEST )
> {
> hb_retc( hb_parc( 1, 1 ) );
> }
HB_FUNC( TEST )
{
hb_retc( hb_parvc( 1, 1 ) );
}
Can I ask the reason for this Clipp
tested against a ADS Server 9.10.0.9
changed
SET SERVER LOCAL
to
SET SERVER REMOTE
and this is the result.
rdd: ADSCDX
TEMP
TEMP2
TEMP
1
100
TEMP2
1
98
Przemyslaw Czerpak wrote:
>
> On Wed, 15 Jul 2009, AbeB wrote:
>> problem with subindex & ads remot
Enrico Maria Giordano wrote:
>
> What is the correct way to implement the following sample in Harbour (it
> works fine in Clipper and xHarbour):
>
> FUNCTION MAIN()
>
> LOCAL aArray := { "Test 1" }
>
> ? TEST( aArray )
>
> RETURN NIL
>
>
> #pragma BEGINDUMP
>
> #include "hba
What is the correct way to implement the following sample in Harbour (it
works fine in Clipper and xHarbour):
FUNCTION MAIN()
LOCAL aArray := { "Test 1" }
? TEST( aArray )
RETURN NIL
#pragma BEGINDUMP
#include "hbapi.h"
HB_FUNC( TEST )
{
hb_retc( hb_parc( 1, 1 ) );
}
#pragma