tDatepick : error in 12.02

Post Reply
Demont Brecht
Posts: 55
Joined: Fri Jul 08, 2011 6:43 am

tDatepick : error in 12.02

Post by Demont Brecht »

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
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: tDatepick : error in 12.02

Post by Antonio Linares »

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
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
mgsoft
Posts: 398
Joined: Mon Aug 17, 2009 12:18 pm
Location: España

Re: tDatepick : error in 12.02

Post by mgsoft »

Thank you.

Will you publish a revised build?.
Saludos,

Eduardo
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: tDatepick : error in 12.02

Post by Antonio Linares »

Eduardo,

Not yet, unless other bugs arise
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply