Click here to Skip to main content
15,919,422 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: win32 static library(NO MFC) Pin
sach!!27-Jun-06 19:14
sach!!27-Jun-06 19:14 
GeneralRe: win32 static library(NO MFC) Pin
Jeremy Falcon28-Jun-06 13:13
professionalJeremy Falcon28-Jun-06 13:13 
GeneralRe: win32 static library(NO MFC) Pin
Jörgen Sigvardsson28-Jun-06 14:20
Jörgen Sigvardsson28-Jun-06 14:20 
GeneralRe: win32 static library(NO MFC) Pin
Jeremy Falcon28-Jun-06 14:54
professionalJeremy Falcon28-Jun-06 14:54 
GeneralRe: win32 static library(NO MFC) Pin
Jörgen Sigvardsson28-Jun-06 22:05
Jörgen Sigvardsson28-Jun-06 22:05 
GeneralRe: win32 static library(NO MFC) Pin
Jeremy Falcon29-Jun-06 6:39
professionalJeremy Falcon29-Jun-06 6:39 
Questionerror C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Toubou27-Jun-06 0:41
Toubou27-Jun-06 0:41 
AnswerRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
_AnsHUMAN_ 27-Jun-06 0:59
_AnsHUMAN_ 27-Jun-06 0:59 
// Call AnimateWindow as<br />
HMODULE hMod= GetModuleHandle(_T("USER32.DLL"));<br />
if (hMod!=NULL)<br />
	fptr= (ANIMWINDOW)GetProcAddress(hMod, _T("AnimateWindow"));<br />
else<br />
	fptr= NULL;

//In the header file declare a function as in the global section.
<br />
typedef BOOL (WINAPI* ANIMWINDOW)(HWND,DWORD,DWORD);

//And in the variables declaration of the class in the public/protected section.
<br />
ANIMWINDOW fptr;<br />


I hope this will help you.

Somethings seem HARD to do, until we know how to do them.
Wink | ;-)
_AnShUmAn_
QuestionRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' [modified] Pin
Toubou27-Jun-06 1:57
Toubou27-Jun-06 1:57 
AnswerRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' [modified] Pin
FarPointer27-Jun-06 1:03
FarPointer27-Jun-06 1:03 
GeneralRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Toubou27-Jun-06 1:52
Toubou27-Jun-06 1:52 
GeneralRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
James R. Twine27-Jun-06 2:01
James R. Twine27-Jun-06 2:01 
AnswerRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Naveen27-Jun-06 1:04
Naveen27-Jun-06 1:04 
GeneralRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Toubou27-Jun-06 1:54
Toubou27-Jun-06 1:54 
GeneralRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Naveen27-Jun-06 1:58
Naveen27-Jun-06 1:58 
GeneralRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Toubou27-Jun-06 2:11
Toubou27-Jun-06 2:11 
GeneralRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Naveen27-Jun-06 2:16
Naveen27-Jun-06 2:16 
QuestionRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Hamid_RT27-Jun-06 2:03
Hamid_RT27-Jun-06 2:03 
AnswerRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Toubou27-Jun-06 2:12
Toubou27-Jun-06 2:12 
GeneralRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Hamid_RT27-Jun-06 2:20
Hamid_RT27-Jun-06 2:20 
AnswerRe: error C2039: 'AnimateWindow' : is not a member of 'CMyDlg' Pin
Toubou28-Jun-06 0:24
Toubou28-Jun-06 0:24 
QuestionApplication Design Ideas Pin
AbhishekBK27-Jun-06 0:37
AbhishekBK27-Jun-06 0:37 
QuestionSetWindowsHookEx from NT Service Pin
kelt66627-Jun-06 0:37
kelt66627-Jun-06 0:37 
AnswerRe: SetWindowsHookEx from NT Service Pin
FarPointer27-Jun-06 0:50
FarPointer27-Jun-06 0:50 
GeneralRe: SetWindowsHookEx from NT Service Pin
kelt66627-Jun-06 3:45
kelt66627-Jun-06 3:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.