FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour bugs TDataRow 13.07
Posts: 1303
Joined: Tue Jul 21, 2009 08:12 AM
bugs TDataRow 13.07
Posted: Tue Aug 20, 2013 09:05 PM

Mr. Nages,

In 13.07, when I leave an empty field and I save it, on REPORT Class I get nil in the field, but it worked fine in previous 13.06, showing nothing.

Also, in 13.07, if in a Character field you asign a numeric value, now it produces this error. In previous 13.06 no error was produced:

Error description: Error BASE/1070 Error de argumento: ==
Args:
[ 1] = N 13
[ 2] = C

Stack Calls
===========
Called from: .\source\classes\DATAROW.PRG => TDATAROW:MODIFIED( 173 )
Called from: .\source\classes\DATAROW.PRG => TDATAROW:SAVE( 379 )

Thank you. Best regards

Muchas gracias. Many thanks.



Un saludo, Best regards,



Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]



Implementando MSVC 2010, FWH64 y ADO.



Abandonando uso xHarbour y SQLRDD.
Posts: 1303
Joined: Tue Jul 21, 2009 08:12 AM
Re: bugs TDataRow 13.07
Posted: Thu Aug 22, 2013 08:24 AM

Up.

Thanks.

Muchas gracias. Many thanks.



Un saludo, Best regards,



Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]



Implementando MSVC 2010, FWH64 y ADO.



Abandonando uso xHarbour y SQLRDD.
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: bugs TDataRow 13.07
Posted: Mon Aug 26, 2013 09:57 AM
About display of "nil"
------------------------
In function cValToStr(...) in the valtostr.prg, please make the following modification:

function cValToStr
Please locate the lines:
Code (fw): Select all Collapse
   if uVal == nil
      cVal = "nil"

Please change it as
Code (fw): Select all Collapse
   if uVal == nil
      cVal = ""


Next point: Do you want to store numbers as numeric values in character field?
Regards



G. N. Rao.

Hyderabad, India

Continue the discussion