FlashWindowEx useage
-
Hi, I am trying to use this function
CWnd::FlashWindowEx()
in my CMainFrm class but it cannot compile returning the error error C2065: 'FlashWindowEx' : undeclared identifier However, if I useCWnd::FlashWindow()
It is ok. Does anyone know why the call to CWnd::FlashWindow() does not work ? Thanks. ps I have ommitted the arguements in this post. -
Hi, I am trying to use this function
CWnd::FlashWindowEx()
in my CMainFrm class but it cannot compile returning the error error C2065: 'FlashWindowEx' : undeclared identifier However, if I useCWnd::FlashWindow()
It is ok. Does anyone know why the call to CWnd::FlashWindow() does not work ? Thanks. ps I have ommitted the arguements in this post.Maybe you have an old version of MFC (for instance, VS6 MFC doesn't have the
CWnd::FlashWindowEx
method while it has theCWnd::FlashWindow
one). As workaround, try to use the Win32FlashWindowEx
function. :)If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
-
Hi, I am trying to use this function
CWnd::FlashWindowEx()
in my CMainFrm class but it cannot compile returning the error error C2065: 'FlashWindowEx' : undeclared identifier However, if I useCWnd::FlashWindow()
It is ok. Does anyone know why the call to CWnd::FlashWindow() does not work ? Thanks. ps I have ommitted the arguements in this post.See the FAQ: 2.2 I'm trying to call a Windows API, but the compiler gives an undeclared identifier error (C2065). Why?[^]
--Mike-- Visual C++ MVP :cool: LINKS~! Ericahist | PimpFish | CP SearchBar v3.0 | C++ Forum FAQ
-
Hi, I am trying to use this function
CWnd::FlashWindowEx()
in my CMainFrm class but it cannot compile returning the error error C2065: 'FlashWindowEx' : undeclared identifier However, if I useCWnd::FlashWindow()
It is ok. Does anyone know why the call to CWnd::FlashWindow() does not work ? Thanks. ps I have ommitted the arguements in this post.Whats your compiler?
WhiteSky