Hello,
Updating from fwh 8.10 to fwh 12.02 gives a error in tDtepick
Error description: Error BASE/1004 Class: 'NIL' has no exported method: EVAL
Args:
[ 1] = U
[ 2] = O TDATEPICK
Stack Calls
===========
Called from: => EVAL( 0 )
Called from: .\source\classes\TDTPICKE.PRG => (b)TDATEPICK:NEW( 94 )
The offending line in tDtepick.prg :
::bValid = { || If( ::lClosed, Eval( bValid, Self ), .F. ) }
In 8.10 : ::bValid = bValid
In the dialog i have no valid clausule :
@ 10,10 DTPICKER oGet[1] VAR Van OF oDlg PIXEL SIZE 45,10
It seems that the ::bValid is executed with ::lClosed=.T. (set in method Notify ?) , bValid is nil
Changing as :
# ifdef FRANKDEMONT
::bValid = { || If(::lClosed, IIF( Valtype(bValid)=="B" , Eval( bValid, Self ) , .T.) , .F. ) }
# else
::bValid = { || If( ::lClosed, Eval( bValid, Self ), .F. ) }
# endif
Seems to work
Frank
Frank
tDatepick : error in 12.02
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: tDatepick : error in 12.02
Frank,
Yes, we recently detected that bug in FWH 12.02 and we commented it here in the forums and proposed a similar solution like yours
http://forums.fivetechsupport.com/viewt ... 88#p126788
Yes, we recently detected that bug in FWH 12.02 and we commented it here in the forums and proposed a similar solution like yours
http://forums.fivetechsupport.com/viewt ... 88#p126788
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: tDatepick : error in 12.02
Eduardo,
Not yet, unless other bugs arise
Not yet, unless other bugs arise