Link to home
Start Free TrialLog in
Avatar of wwalschaerts
wwalschaerts

asked on

Modal Dialog 'time out'...

Hello all,
Regarding Dialogs : I am trying to find a way to automatically exit from a Dialog called like this : DlgOpen.DoModal();
It is a CDialog class.
In fact I have a OK button but I also want to close this dialog after 30 seconds (for example). I dont know which
Message I am supposed to use with my Dialog object.
I am using VC++ 5,

Many thanks,
WW
ASKER CERTIFIED SOLUTION
Avatar of WxW
WxW

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of WxW
WxW

Set Timer :
int k;

k = ::SetTimer(0,0,TimeInMilliseconds,(TIMERPROC)MyProc);

....

void CALLBACK MyProc(HWND,UINT,UINT,DWORD)
  {
  KillTimer(0,k);
  SendMessage(HwndOfDialog,WM_CLOSE,0,0);
  }

In case that you need more help , let me know :)
Avatar of wwalschaerts

ASKER

Hum, Don't really understand !

I am working with Classes so I have tried to insert :
"k = ::SetTimer(0,0,TimeInMilliseconds,(TIMERPROC)MyProc);"
into the CDialog definition like this (not sure it is correc) :
COpen_dlg::COpen_dlg(CWnd* pParent /*=NULL*/)
      : CDialog(COpen_dlg::IDD, pParent)
  {
  //{{AFX_DATA_INIT(COpen_dlg)
  // NOTE: the ClassWizard will add member initialization here
  //}}AFX_DATA_INIT
  Timer = ::SetTimer(0,0,10000,(TIMERPROC)Timer_Proc);
  }

Then I don't know how I can find the HWND du Dialog?

Thanks for your help,
WW
Hmm you should check if the CDialog class , has a public member ( e.g. Borland's TDialog has HWindow , in which one stores the HWND of the window ) . Or find a function like GetWindowHandle() , or something , to get the HWND of the window

If you do not find anything , you must do this :

Instead of using ::SetTimer() API , you should use CDialog :: SetTimer() ( I believe that CDialog will have such a function )

This will not call a TIMERPROC function after the timeout , but rather it passes WM_TIMER messages to the window proc . You can handle messages from CDialog :: WindowProc ( Again I am not sure for the name , because I use borland ) .

In all cases , the message that you will send is WM_CLOSE

And please note that a HWND public member of CDialog , will be set only after the window has been created . Thats why you should not take the HWND from the constructor , but rather from a function that is called after the Window is created , but before it is executed . Borland has TDialog :: SetupWindow for this job

This is an example of a code

void COpen_dlg :: SetupWindow() (?)
{
CDialog :: SetupWindow(); (?) // Call the parent SetupWindow
HWNDDialog = HWindow; // or something like CWindow , CWnd or else
}

and then you have the HWND for the dialog , and you can use it in your timer function
Thanks a lot,
WW