Cerrar un Dialog luego de un tiempo

Post Reply
davidObarrio
Posts: 72
Joined: Tue Oct 02, 2012 4:36 pm

Cerrar un Dialog luego de un tiempo

Post by davidObarrio »

Amigos

Alguien tiene un ejemplo de como cerrar un Dialog luego de un cierto tiempo de no tener ninguna actuvidad ?

gracias

david :roll:
User avatar
acuellar
Posts: 1312
Joined: Tue Oct 28, 2008 6:26 pm
Location: Santa Cruz-Bolivia

Re: Cerrar un Dialog luego de un tiempo

Post by acuellar »

David aqui un Ej:

Code: Select all

 DEFINE DIALOG oDlg OF oWnd FROM 125,207 TO 520,873 PIXEL TITLE "FACTURAS" 
    
    DEFINE TIMER oTimer INTERVAL 400000 ACTION (oDlg:End(),oTimer:End())

 ACTIVATE DIALOG oDlg CENTERED ON INIT oTimer:Activate()
  oTimer:End()

 
Saludos,

Adhemar
Saludos,

Adhemar C.
User avatar
JavierVital
Posts: 105
Joined: Thu Feb 26, 2009 4:08 pm
Contact:

Re: Cerrar un Dialog luego de un tiempo

Post by JavierVital »

Esta bien el timer, pero como determinas si el dialogo no halla tenido algun cambio ?
Post Reply