Re: [Harbour] Re: Web Services in Harbour

2009-10-18 Thread Massimo Belgrano
I share my Other Link SOAP Official w3c http://www.w3.org/TR/soap/ server side soap  http://www.soapuser.com/server1.html www.soapclient.com www.develop.com/soap http://soapagent.com/pages/Source_Code/ a soap server in vb6 http://www.geocities.com/rikwilly/soap.html incomplete and in Italian but

[Harbour] Re: Problem with win_prn class CHARSET.

2009-10-18 Thread Itamar Lins
Hi, Thanks for response. I am using: D:\harbour\trunk\harbour>harbour -build Harbour 2.0.0beta3 (Rev. 12721) Copyright (c) 1999-2009, http://www.harbour-project.org/ Harbour Build Info --- Version: Harbour 2.0.0beta3 (Rev. 12721) Compiler: Microsoft Visual C++ 15.0.26569 (3

[Harbour] SF.net SVN: harbour-project:[12723] trunk/harbour

2009-10-18 Thread druzus
Revision: 12723 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12723&view=rev Author: druzus Date: 2009-10-18 11:47:24 + (Sun, 18 Oct 2009) Log Message: --- 2009-10-18 13:47 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbsoc

Re: [Harbour] Re: Problem with win_prn class CHARSET.

2009-10-18 Thread Viktor Szakáts
Hi, So you're using UNICODE build. Two things have changed in recent versions: 1. MSVC 2005 and above will have UNICODE mode turned on by default. This may cause such sort of change in behavior you described, and it's intentionally turned on so that this mode, which is the future, be

Re: [Harbour] SqlMix and dbcreated

2009-10-18 Thread Mindaugas Kavaliauskas
Hi, Yes, of cause. You just have to pass a connection parameter to RDDINFO(), DBUSEAREA(), etc. Or select current connections using RDDI_CONNECTION. Do not understand :( For example I have 2 databases : 1 - oracle 2 - sqlserwer nConnection1 := RDDINFO(RDDI_CONNECT, ...) nConnection2 := R

Re: [Harbour] HBMemIO and RDDADS

2009-10-18 Thread Mindaugas Kavaliauskas
Hi, I'm trying to test hbmemio with RDDADS but I can't. Is it possible? No, ADS server is not a part of Harbour code, so, it can not use hbmemio.lib :) Regards, Mindaugas ___ Harbour mailing list Harbour@harbour-project.org http://lists.harbour

[Harbour] datetime conversion functions request

2009-10-18 Thread Francesco Saverio Giudice
Hi Przemek, could you kindly add these functions ? HB_TTOD( tTimeStamp ) -> dDate HB_TTOT( tTimeStamp ) -> cTime Now if I have a timestamp value I need to make: CTOD( HB_DTOC( tTimeStamp ) ) -> dDate or better: STOD( HB_TTOS( tTimeStamp ) ) -> dDate and HB_TTOC( tTimeStamp, "", "HH:MM:SS" ) -> c

[Harbour] HBQT - More classes added but cannot make lib now

2009-10-18 Thread Pritpal Bedi
Hello Viktor In quest to implement one-to-one GC func relationship, I had to add few more classes. After everything went fine on compilation level I get this error when linker is called: The input line is too long. make[1]: *** [libhbqt.a] Error 255 make: *** [descend] Error 2 New input line i

[Harbour] SF.net SVN: harbour-project:[12724] trunk/harbour

2009-10-18 Thread april
Revision: 12724 http://harbour-project.svn.sourceforge.net/harbour-project/?rev=12724&view=rev Author: april Date: 2009-10-18 23:39:23 + (Sun, 18 Oct 2009) Log Message: --- + harbour/doc/en-en/1stread.txt ! initial version of a 'doc' formatted 'read-me' file +

[Harbour] HBQT - A Clarification

2009-10-18 Thread Pritpal Bedi
Hello Przemek, All HB_GARBAGE_FUNC( release_QMainWindow ) { void ** ph = ( void ** ) Cargo; if( ph && * ph ) { delete ( ( QMainWindow * ) * ph ); * ph = NULL; } } HB_FUNC( QT_QMAINWINDOW ) { void ** ph = ( void ** ) hb_gcAlloc( sizeof( void * ), release_QMainWindow )

Re: [Harbour] HBQT - A Clarification

2009-10-18 Thread Pritpal Bedi
Hello All Pritpal Bedi wrote: > > HB_GARBAGE_FUNC( release_QMainWindow ) > { >void ** ph = ( void ** ) Cargo; > >if( ph && * ph ) >{ > delete ( ( QMainWindow * ) * ph ); > > * ph = NULL; >} > } > > HB_FUNC( QT_QMAINWINDOW ) > { >void ** ph = ( void ** ) hb_gcA