Re: [Harbour] HAPPY NEW YEAR !!!

2010-01-01 Thread José Luis Capel ~ CapelSoft
Happy New Year for all of you!! ___ Harbour mailing list (attachment size limit: 40KB) Harbour@harbour-project.org http://lists.harbour-project.org/mailman/listinfo/harbour

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

2009-12-29 Thread José Luis Capel ~ CapelSoft
Hi, A dialog window show me this detailed errors list: Error BASE/1068 Argument error: array access Called from SETAPPEVENT(0) Called from XBPDIALOG:GRABEVENT(0) Called from (b)XBPDIALOG_CREATE(0) Called from QT_QWIDGET_SHOW(0) Called from QMAINWINDOW:SHOW(0) Called from

[Harbour] Warnings building Harbour for Msvc2008

2009-12-20 Thread José Luis Capel ~ CapelSoft
Hi, After a clean build I have lots of warnings like this one: ../../../gencc.c(656) : warning C4244: '=' : conversi¢n de 'size_t' a 'USHORT'; posible p,rdida de datos ../../../gencc.c(808) : warning C4244: '=' : conversi¢n de 'size_t' a 'USHORT'; posible p,rdida de datos and more. Attached

[Harbour] Partial classes

2009-11-14 Thread José Luis Capel ~ CapelSoft
Hi all, I would like your opinion about the concept of 'partial class'. For example: //--- First.prg Class MyClass DATA data1 METHOD MyMethod() EndClass METHOD MyMethod() CLASS MyClass Return Self //--- Second.Prg PartialClass MyClass DATA data2 METHOD MyMethod() EndClass