Page 1 of 1

Difference betwenn FWH 19.06 and previous version SOLVED

Posted: Mon Jul 22, 2019 9:35 am
by Maurizio
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

Re: Difference betwenn FWH 19.06 and previous version

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

Please make this correction in the datarow.prg
Lines 770,771

Code: Select all

               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: Select all

               uVal  := FW_DeCode( cType, 'C', Space( Min( 255, oField:DefinedSize ) ), ;
                        'D', CToD( '' ), 'L', .f., 'N', 0.00, 'T', CToT( '' ), "" )
 

Re: Difference betwenn FWH 19.06 and previous version

Posted: Mon Jul 22, 2019 12:34 pm
by Maurizio
No problem RAO ,


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