Difference betwenn FWH 19.06 and previous version SOLVED

Post Reply
User avatar
Maurizio
Posts: 705
Joined: Mon Oct 10, 2005 1:29 pm
Contact:

Difference betwenn FWH 19.06 and previous version SOLVED

Post 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
Last edited by Maurizio on Mon Jul 22, 2019 12:35 pm, edited 1 time in total.
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: Difference betwenn FWH 19.06 and previous version

Post 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( '' ), "" )
 
Regards

G. N. Rao.
Hyderabad, India
User avatar
Maurizio
Posts: 705
Joined: Mon Oct 10, 2005 1:29 pm
Contact:

Re: Difference betwenn FWH 19.06 and previous version

Post by Maurizio »

No problem RAO ,


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