FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index Bugs report & fixes / Informe de errores y arreglos Question about fwh 2.7 April build
Posts: 332
Joined: Thu Nov 17, 2005 09:11 PM
Question about fwh 2.7 April build
Posted: Wed Apr 05, 2006 10:23 PM

Hi Antonio,

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

Example: ALT+C in button ignores cancel clause.

Thanks.

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Question about fwh 2.7 April build
Posted: Thu Apr 06, 2006 09:41 AM
Wanderson,

This code is properly working with FWH april build:
#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
Posts: 332
Joined: Thu Nov 17, 2005 09:11 PM
Question about fwh 2.7 April build
Posted: Thu Apr 06, 2006 11:34 PM
Antonio Linares wrote:Wanderson,

This code is properly working with FWH april build:
#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.
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Question about fwh 2.7 April build
Posted: Fri Apr 07, 2006 07:32 AM

Wanderson,

With FWH april build it works ok.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 332
Joined: Thu Nov 17, 2005 09:11 PM
Question about fwh 2.7 April build
Posted: Fri Apr 07, 2006 03:31 PM
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.

Continue the discussion