Click here to Skip to main content
15,895,538 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: WM_GETMINMAXINFO and wrapping windows Pin
jhwurmbach25-Jan-06 1:06
jhwurmbach25-Jan-06 1:06 
GeneralRe: WM_GETMINMAXINFO and wrapping windows Pin
virtualrush25-Jan-06 1:35
virtualrush25-Jan-06 1:35 
GeneralRe: WM_GETMINMAXINFO and wrapping windows Pin
jhwurmbach25-Jan-06 2:05
jhwurmbach25-Jan-06 2:05 
GeneralRe: WM_GETMINMAXINFO and wrapping windows Pin
normanS25-Jan-06 19:17
normanS25-Jan-06 19:17 
GeneralRe: WM_GETMINMAXINFO and wrapping windows Pin
jhwurmbach25-Jan-06 21:39
jhwurmbach25-Jan-06 21:39 
GeneralRe: WM_GETMINMAXINFO and wrapping windows Pin
David Crow25-Jan-06 3:40
David Crow25-Jan-06 3:40 
AnswerRe: WM_GETMINMAXINFO and wrapping windows Pin
Vipin Aravind25-Jan-06 18:52
Vipin Aravind25-Jan-06 18:52 
QuestionHow to know and capture if a tooltip appears on screen? Pin
Rashid.Mahmood25-Jan-06 0:58
Rashid.Mahmood25-Jan-06 0:58 
Hi all,

I m making a screen capture utility.
My application takes the screenshot after certain intervals but
if a tooltip window appears on the screen during capturing process
it doesnt capture it.

Please tell me how can i inform my application that
a tooltip window appears on screen and how to
capture its window bitmap?

I m trying to do it as but got problem
<br />
EnumWindows(&TooltipsWndProc,1);<br />
<br />
BOOL CALLBACK TooltipsWndProc(HWND hwnd,LPARAM lParam)<br />
{<br />
CHAR buf[256];<br />
GetClassName(hwnd,buf,256);<br />
if((lstrcmp(buf,TEXT("tooltips_class32"))==0)<br />
|| (lstrcmpi(buf, TEXT("tooltips_class")) == 0))<br />
<br />
{ <br />
<br />
MessageBox(NULL, "Tooltip", "TT",1);<br />
// do ur stuff here  <br />
}<br />
EnumChildWindows(hwnd,&KillTT_EnableTooltips,lParam);<br />
return TRUE;<br />
}<br />


Its doesnt work for only tooltips, on each button click
the above MessageBox appears.

Thanx for ur +ve reply.
AnswerRe: How to know and capture if a tooltip appears on screen? Pin
Rashid.Mahmood25-Jan-06 18:58
Rashid.Mahmood25-Jan-06 18:58 
AnswerRe: How to know and capture if a tooltip appears on screen? Pin
Stephen Hewitt25-Jan-06 21:26
Stephen Hewitt25-Jan-06 21:26 
QuestionDLL calback functions Pin
Rostfrei25-Jan-06 0:55
Rostfrei25-Jan-06 0:55 
AnswerRe: DLL calback functions Pin
ky_rerun25-Jan-06 1:29
ky_rerun25-Jan-06 1:29 
QuestionNot able to Read LPSTREAM data Pin
saravana pandy25-Jan-06 0:49
saravana pandy25-Jan-06 0:49 
AnswerRe: Not able to Read LPSTREAM data Pin
Stephen Hewitt25-Jan-06 21:30
Stephen Hewitt25-Jan-06 21:30 
QuestionDocument pointer Pin
QuickDeveloper24-Jan-06 23:58
QuickDeveloper24-Jan-06 23:58 
AnswerRe: Document pointer Pin
Owner drawn25-Jan-06 0:11
Owner drawn25-Jan-06 0:11 
AnswerRe: Document pointer Pin
David Crow25-Jan-06 3:47
David Crow25-Jan-06 3:47 
Questionhow to read and write a file use unicode in windows 98?? Pin
ebinaini24-Jan-06 23:44
ebinaini24-Jan-06 23:44 
AnswerRe: how to read and write a file use unicode in windows 98?? Pin
Owner drawn24-Jan-06 23:55
Owner drawn24-Jan-06 23:55 
AnswerRe: how to read and write a file use unicode in windows 98?? Pin
David Crow25-Jan-06 3:49
David Crow25-Jan-06 3:49 
GeneralRe: how to read and write a file use unicode in windows 98?? Pin
ebinaini25-Jan-06 14:31
ebinaini25-Jan-06 14:31 
QuestionRe: how to read and write a file use unicode in windows 98?? Pin
David Crow26-Jan-06 2:27
David Crow26-Jan-06 2:27 
Questionhow does this for loop work! Pin
namaskaaram24-Jan-06 23:21
namaskaaram24-Jan-06 23:21 
AnswerRe: how does this for loop work! Pin
benjymous24-Jan-06 23:31
benjymous24-Jan-06 23:31 
GeneralRe: how does this for loop work! Pin
Trollslayer25-Jan-06 1:42
mentorTrollslayer25-Jan-06 1:42 

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.