FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Difference betwenn FWH 19.06 and previous version SOLVED
Posts: 842
Joined: Mon Oct 10, 2005 01:29 PM

Difference betwenn FWH 19.06 and previous version SOLVED

Posted: Mon Jul 22, 2019 09:35 AM

Hello RAO

I use FWH 19.06 , Harbour , ADO

Ther is differnce betwenn 19.06 and FWH 18.07 ( which I use as an official version )

The problem is the class datarow.prg and the memo fields

If the memo field is NULL

  • with FWH 18.07 ? valtype( oRec:MEMO) ---> C
  • with FWH 19.06 ? valtype( oRec:MEMO) ---> U

this causes me several errors :(

Maurizio

http://www.nipeservice.com

Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM

Re: Difference betwenn FWH 19.06 and previous version

Posted: Mon Jul 22, 2019 12:24 PM
Very much regret the inconvenience caused to you.

Please make this correction in the datarow.prg
Lines 770,771
Code (fw): Select all Collapse
               uVal  := FW_DeCode( cType, 'C', Space( Min( 255, oField:DefinedSize ) ), ;
                        'D', CToD( '' ), 'L', .f., 'N', 0.00, 'T', CToT( '' ), nil )

In the line 771, instead of "nil" at the end, make it ""
like this
Code (fw): Select all Collapse
               uVal  := FW_DeCode( cType, 'C', Space( Min( 255, oField:DefinedSize ) ), ;
                        'D', CToD( '' ), 'L', .f., 'N', 0.00, 'T', CToT( '' ), "" )
Regards



G. N. Rao.

Hyderabad, India
Posts: 842
Joined: Mon Oct 10, 2005 01:29 PM

Re: Difference betwenn FWH 19.06 and previous version

Posted: Mon Jul 22, 2019 12:34 PM

No problem RAO ,

you are always very quick to solve problems :D
Thanks Maurizio

Continue the discussion