Problema con cierre de dialogos

Post Reply
User avatar
astursoft
Posts: 139
Joined: Sun Nov 06, 2005 6:14 pm
Location: Asturias

Problema con cierre de dialogos

Post by astursoft »

Antonio en esta situacion :

ventana->dialogo->odlg:end()
funciona perfecto , pero si pongo

ventana->dialogo->dialogo -> odlg:end()
debo de dar dos veces al boton o al escape para que se cierre la ventana .

Esto ocurre desde el ultimo build .
Jose Luis Parajón
Asturias
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Jose Luis,

Este ejemplo funciona correctamente con el build que acabamos de publicar esta mañana:

Code: Select all

#include "FWCE.ch" 

function Main() 

   local oWnd

   DEFINE WINDOW oWnd TITLE "Test" 
   
   @ 1, 1 BUTTON "Next" ACTION Dialog1( oWnd ) ;
      SIZE 60, 30
   
   ACTIVATE WINDOW oWnd

return nil 

function Dialog1( oWnd ) 

   local oDlg

   DEFINE DIALOG oDlg TITLE 'Second' OF oWnd ;
      SIZE 200, 100

   @ 1, 1 BUTTON "Next" ACTION Dialog2( oDlg ) ;
      SIZE 30, 15
   
   ACTIVATE DIALOG oDlg CENTERED
   
return nil

function Dialog2( oDlg1 ) 

   local oDlg

   DEFINE DIALOG oDlg TITLE 'Third' OF oDlg1 ;
      SIZE 150, 70
   
   ACTIVATE DIALOG oDlg CENTERED
   
return nil
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
astursoft
Posts: 139
Joined: Sun Nov 06, 2005 6:14 pm
Location: Asturias

Post by astursoft »

Perdon , no vi este ultimo build , yo estaba con el los folders
Jose Luis Parajón
Asturias
Post Reply