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
Difference betwenn FWH 19.06 and previous version SOLVED
Difference betwenn FWH 19.06 and previous version SOLVED
Last edited by Maurizio on Mon Jul 22, 2019 12:35 pm, edited 1 time in total.
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Difference betwenn FWH 19.06 and previous version
Very much regret the inconvenience caused to you.
Please make this correction in the datarow.prg
Lines 770,771
In the line 771, instead of "nil" at the end, make it ""
like this
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
G. N. Rao.
Hyderabad, India
Re: Difference betwenn FWH 19.06 and previous version
No problem RAO ,
you are always very quick to solve problems
Thanks Maurizio
you are always very quick to solve problems
Thanks Maurizio