[xHarbour-developers] 2009-05-01 0618 UTC-0430 Ron Pinkas ron.pinkas/at/xharbour.com

2009-05-01 Thread Ron Pinkas
2009-05-01 0618 UTC-0430 Ron Pinkas ron.pinkas/at/xharbour.com
   * source/rtl/hbini.prg
 * Silly typo in my last commit
  * source/rtl/win32ole.prg
* Minor correction to bTryDefault logic
 

--
Register Now  Save for Velocity, the Web Performance  Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance  Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
___
xHarbour-developers mailing list
xHarbour-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xharbour-developers


Re: [xHarbour-developers] Bug in SAVE TO

2009-05-01 Thread Miguel Angel Marchuet




THANK'S a lot , I still working on it, i upload it soon
I'm trying to optimize a little xharbour DATETIME, as you know
xharbour works with DATETIME as HB_IT_DATE with .time != 0

I'm removing != 0, and using HB_IT_TIMEFLAG , as i say in my last
upload .
it is work in progress.

I want to change ValType of DATETIME to T, it is not backguard
compatible
but it will work as other compilers. 

someone recommended doing as "D" so the past, and now we are
paying for it,
being inconsistent with VFP, ADS and others

How I understand, this is low used, I purpose to change to "T", and
mantain "D" only under
some define.

Best regards,
Miguel Angel Marchuet 

Enrico Maria Giordano escribi:

  Running the following sample

FUNCTION MAIN()

PRIVATE dTest

IF !FILE( "TEST.MEM" )
dTest = DATE()
? dTest
SAVE TO TEST
ENDIF

RESTORE FROM TEST

? dTest

INKEY( 0 )

RETURN NIL

I wrongly get

04/30/09
04/30/09 00:00:00.00

instead of

04/30/09
04/30/09

EMG

--
EMAG Software Homepage: http://www.emagsoftware.it
The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
The Best of Spectrum Games: http://www.emagsoftware.it/tbosg
The EMG Music page: http://www.emagsoftware.it/emgmusic

--
Register Now  Save for Velocity, the Web Performance  Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance  Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
___
xHarbour-developers mailing list
xHarbour-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xharbour-developers

__ Informacin de ESET Smart Security, versin de la base de firmas de virus 4040 (20090428) __

ESET Smart Security ha comprobado este mensaje.

http://www.eset.com




  




--
Register Now  Save for Velocity, the Web Performance  Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance  Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf___
xHarbour-developers mailing list
xHarbour-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xharbour-developers


[xHarbour-developers] fixed i upload soon some changes

2009-05-01 Thread Miguel Angel Marchuet
Fixed I upload now

try too,  build tests\datetime.prg

working perfectly in xHarbour :)

Best regards
Miguel Angel Marchuet

Enrico Maria Giordano escribió:
 Running the following sample

 FUNCTION MAIN()

 PRIVATE dTest

 IF !FILE( TEST.MEM )
 dTest = DATE()
 ? dTest
 SAVE TO TEST
 ENDIF

 RESTORE FROM TEST

 ? dTest

 INKEY( 0 )

 RETURN NIL

 I wrongly get

 04/30/09
 04/30/09 00:00:00.00

 instead of

 04/30/09
 04/30/09

 EMG

 --
 EMAG Software Homepage: http://www.emagsoftware.it
 The EMG's ZX-Spectrum Page: http://www.emagsoftware.it/spectrum
 The Best of Spectrum Games: http://www.emagsoftware.it/tbosg
 The EMG Music page: http://www.emagsoftware.it/emgmusic

 --
 Register Now  Save for Velocity, the Web Performance  Operations 
 Conference from O'Reilly Media. Velocity features a full day of 
 expert-led, hands-on workshops and two days of sessions from industry 
 leaders in dedicated Performance  Operations tracks. Use code vel09scf 
 and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
 ___
 xHarbour-developers mailing list
 xHarbour-developers@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/xharbour-developers

 __ Información de ESET Smart Security, versión de la base de firmas 
 de virus 4040 (20090428) __

 ESET Smart Security ha comprobado este mensaje.

 http://www.eset.com




   

--
Register Now  Save for Velocity, the Web Performance  Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance  Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
___
xHarbour-developers mailing list
xHarbour-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xharbour-developers


[xHarbour-developers] 2009-05-01 22:29 UTC+0100 Miguel Angel Marchuet miguelan...@marchuet.net

2009-05-01 Thread Miguel Angel Marchuet
2009-05-01 22:29 UTC+0100 Miguel Angel Marchuet miguelan...@marchuet.net
  * include\hbapi.h
  * source\rdd\bmdbfcdx\bmdbfcdx1.c
  * source\rdd\dbfcdx\dbfcdx1.c
  * source\rdd\dbfnsx\dbfnsx1.c
  * source\rtl\transfrm.c
  * source\rtl\valtype.c
  * source\vm\hvm.c
  * source\vm\itemapi.c
* Removed HB_IT_TIMESTAMP, and changed (.time != 0) by 
HB_IIT_TIMEFLAG how will be added to
  HB_IT_DATE when time has value. It's little faster, and more clear.
! fixed VM to work with this changes.


I purpouse change Valtype fo datetime D to T to be compatible with others.

maintain D only under some #define

Best regards,
Miguel Angel Marchuet

--
Register Now  Save for Velocity, the Web Performance  Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance  Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
___
xHarbour-developers mailing list
xHarbour-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xharbour-developers


Re: [xHarbour-developers] help on get class

2009-05-01 Thread Luiz Rafael Culik Guimaraes
Miguel

what you need?

Regards
Luiz
- Original Message - 
From: Miguel Angel Marchuet miguelan...@marchuet.net
To: Xharbour-Developers List xharbour-developers@lists.sourceforge.net
Sent: Friday, May 01, 2009 6:38 PM
Subject: [xHarbour-developers] help on get class


 class GET need implement the edit of datetime items

 any developer can do it ?

 Best regards,
 Miguel Angel marchuet

 --
 Register Now  Save for Velocity, the Web Performance  Operations
 Conference from O'Reilly Media. Velocity features a full day of
 expert-led, hands-on workshops and two days of sessions from industry
 leaders in dedicated Performance  Operations tracks. Use code vel09scf
 and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
 ___
 xHarbour-developers mailing list
 xHarbour-developers@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/xharbour-developers
 


--
Register Now  Save for Velocity, the Web Performance  Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance  Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
___
xHarbour-developers mailing list
xHarbour-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xharbour-developers


[xHarbour-developers] help on get class

2009-05-01 Thread Miguel Angel Marchuet
class GET need implement the edit of datetime items

any developer can do it ?

Best regards,
Miguel Angel marchuet

--
Register Now  Save for Velocity, the Web Performance  Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance  Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
___
xHarbour-developers mailing list
xHarbour-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xharbour-developers