Question about fwh 2.7 April build

Post Reply
Wanderson
Posts: 332
Joined: Thu Nov 17, 2005 9:11 pm

Question about fwh 2.7 April build

Post 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.
User avatar
Antonio Linares
Site Admin
Posts: 42512
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 73 times
Contact:

Post by Antonio Linares »

Wanderson,

This code is properly working with FWH april build:

Code: Select all | Expand

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

Antonio Linares
www.fivetechsoft.com
Wanderson
Posts: 332
Joined: Thu Nov 17, 2005 9:11 pm

Post by Wanderson »

Antonio Linares wrote:Wanderson,

This code is properly working with FWH april build:

Code: Select all | Expand

#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.
User avatar
Antonio Linares
Site Admin
Posts: 42512
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 73 times
Contact:

Post by Antonio Linares »

Wanderson,

With FWH april build it works ok.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Wanderson
Posts: 332
Joined: Thu Nov 17, 2005 9:11 pm

Post 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.
Post Reply