Page 1 of 1

Question about fwh 2.7 April build

PostPosted: Wed Apr 05, 2006 10:23 pm
by Wanderson
Hi Antonio,

Fwh2.7 april build fix the cancel clause with acelerator in button?

Example: ALT+C in button ignores cancel clause.

Thanks.

PostPosted: Thu Apr 06, 2006 9:41 am
by Antonio Linares
Wanderson,

This code is properly working with FWH april build:
Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

   local oDlg, cTest := Space( 20 )
   
   DEFINE DIALOG oDlg
   
   @ 1, 2 GET cTest VALID ! Empty( cTest )
   
   @ 3, 5 BUTTON "&Cancel" ACTION oDlg:End() CANCEL
   
   ACTIVATE DIALOG oDlg CENTER
   
return nil   

PostPosted: Thu Apr 06, 2006 11:34 pm
by Wanderson
Antonio Linares wrote:Wanderson,

This code is properly working with FWH april build:
Code: Select all  Expand view
#include "FiveWin.ch"

function Main()

   local oDlg, cTest := Space( 20 )
   
   DEFINE DIALOG oDlg
   
   @ 1, 2 GET cTest VALID ! Empty( cTest )
   
   @ 3, 5 BUTTON "&Cancel" ACTION oDlg:End() CANCEL
   
   ACTIVATE DIALOG oDlg CENTER
   
return nil   


Linares try this please:

function Main()

local oDlg, cTest := Space( 20 )

DEFINE DIALOG oDlg

@ 1, 2 GET cTest VALID Mostra()

@ 3, 5 BUTTON "&Cancel" ACTION oDlg:End() CANCEL

ACTIVATE DIALOG oDlg CENTER

return nil

Static Function Mostra()
MsgInfo("Wrong")
Return .t.


If i click in button cancel function mostra dont execut and the dialog finish, thats ok. But if i press ALT+C function mostra execute.

Regards.

PostPosted: Fri Apr 07, 2006 7:32 am
by Antonio Linares
Wanderson,

With FWH april build it works ok.

PostPosted: Fri Apr 07, 2006 3:31 pm
by Wanderson
Antonio Linares wrote:Wanderson,

With FWH april build it works ok.


Thanks Antonio, my fwh version is older that april build.
Have many modifications to fix this problem? If simple post here please.

Regards.