How to return the focus for my application?

Post Reply
User avatar
vilian
Posts: 795
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Contact:

How to return the focus for my application?

Post by vilian »

Hi,

When I call another application, I execute oDlg:Disable()

When to another application she is closed, I I execute oDlg:Enable and oDlg:SetFocus(), but my application does not receive the focus!
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
James Bott
Posts: 4654
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA
Contact:

Post by James Bott »

Vilian,

Try:

setForeGroundWindow(hWnd)

James
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

James missed the oDlg: (you could also try with the main oWnd)
SetForeGroundWindow(oDlg:hWnd)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
vilian
Posts: 795
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Contact:

Post by vilian »

Antonio,

Why when use oDlg:Disable(), exactly using later oDlg:Enable() clauses VALID of the GETS leaves to function?
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Vilian,

This test works fine:

Code: Select all

#include "FiveWin.ch"

function Main()

   local oDlg, cTest := "hello world"

   DEFINE DIALOG oDlg

   @ 1, 2 GET cTest VALID ( MsgInfo( "ok" ), .T. )
   
   @ 3, 2 BUTTON "Disable" ACTION ( oDlg:Disable(), MsgInfo( "disabled" ), oDlg:Enable() )   

   ACTIVATE DIALOG oDlg CENTERED ;
      VALID MsgYesNo( "Want to end ?" )

return nil
Please provide a sample, thanks
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
vilian
Posts: 795
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Contact:

Post by vilian »

Antonio,

I Sended for you e-mail.
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
Posts: 795
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Contact:

Post by vilian »

Antonio,

You it received the Memory.zip archive?
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Vilian,

yes I got it, thanks, but had no time to review it yet
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply