//以下两个函数由user32.dll导出,只是没有微软官方文档记载,大家在cpp中包含了以下部分,就可以调用MessageBoxTimeout了。

extern "C"
{
int WINAPI MessageBoxTimeoutA(IN HWND hWnd, IN LPCSTR lpText, IN LPCSTR lpCaption, IN UINT uType, IN WORD wLanguageId, IN DWORD dwMilliseconds);
int WINAPI MessageBoxTimeoutW(IN HWND hWnd, IN LPCWSTR lpText, IN LPCWSTR lpCaption, IN UINT uType, IN WORD wLanguageId, IN DWORD dwMilliseconds);
};
#ifdef UNICODE
#define MessageBoxTimeout MessageBoxTimeoutW
#else
#define MessageBoxTimeout MessageBoxTimeoutA
#endif

需要指出的是,Windows 2000的user32.dll没有导出这个函数。

 //举例如下: 

    int ret = MessageBoxTimeoutA(NULL, "倒计时?", "tishi", MB_OKCANCEL, 0, 10*1000);
if( IDOK == ret)
{
::MessageBox(NULL, "IDOK", "结果", MB_OK);
}
else if( IDCANCEL == ret)
{
::MessageBox(NULL, "IDCANCEL", "结果", MB_OK);
}
else if( IDTIMEOUT == ret)
{
::MessageBox(NULL, "IDTIMEOUT", "结果", MB_OK);
}

  工程文件:http://115.com/file/e7sjmrd4

【参考资料 感谢作者】
1、会自动消失的对话框API函数--MessageBoxTimeout 

 

  补充:vc 6.0下会提示未定义,此时可以自己动态调用这个函数。vs 2008下包含上诉代码可以直接使用。

相关文章: