Click here to Skip to main content
Licence 
First Posted 10 Jun 2002
Views 127,838
Bookmarked 50 times

Display ToolTip in any place on the screen

By | 1 Sep 2002 | Article
This article shows how to display tooltips at any location on the screen

Sample ToolTip

Introduction

This article shows how to display tooltips at any location on the screen.

To create a tooltip it is necessary to create a window of class TOOLTIPS_CLASS, then to fill a TOOLINFO structure:

typedef struct tagTOOLINFO{
	UINT      cbSize; 
	UINT      uFlags; 
	HWND      hwnd; 
	UINT_PTR  uId; 
	RECT      rect; 
	HINSTANCE hinst; 
	LPTSTR    lpszText; 
    #if (_WIN32_IE >= 0x0300)
	LPARAM lParam;
    #endif
} TOOLINFO, NEAR *PTOOLINFO, FAR *LPTOOLINFO;

We determine two parameters in this structure which are interesting to us: uFlags and lpszText.

uFlags it is chosen equal TTF_TRACK, that gives us an opportunity of use message sending to choosing a position for ToolTip and control visibility.

lpszText - the task of the text which we want display.

Now we send the message in system, about desire to create the emerging help where we transfer the reference to our structure TOOLINFO

SendMessage (hwndTT, TTM_ADDTOOL, 0, (LPARAM) (LPTOOLINFO) *ti);

Then we send a TTM_TRACKPOSITION message  which sets the coordinates of ToolTip

SendMessage (hwndTT, TTM_TRACKPOSITION, 0, (LPARAM) (DWORD) MAKELONG (m_x, m_y));
where m_x and m_y coordinates x and y on the screen.

And finally we send the message to activate the ToolTip

SendMessage (hwndTT, TTM_TRACKACTIVATE, true, (LPARAM) (LPTOOLINFO) *ti);
where the true value indicates we will display the ToolTip. If we specified false, the ToolTip will be hidden.

History

1 Sep 2002 - updated source code

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Zarembo Maxim

Software Developer

Belarus Belarus

Member

I work as the programmer. I live in Belarus in Minsk. At me higher education. I have experience development programs at use TCP/IP, Win32, MFC, HTTP, SNMP, HASP4, eToken, OpenGl, Hooks. Recently I use packages of development Visual Studio 6.0 and .Net.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralGreat Job - clean concise source PinmemberMember 4439124:59 22 Nov '09  
GeneralEverything U need & Nothing U Don't Pinmemberpg--az19:23 24 Apr '09  
GeneralTo create Tooltip for picture control in MSVS 2008(VC++) Pinmembershruthikl1:03 26 Aug '08  
GeneralGDI OBJECT LEAK Pinmembercarloscorpia23:17 9 Mar '06  
GeneralDe source does not work... the sample exe does. PinmemberPeter Hendrix2:09 11 May '05  
GeneralRe: De source does not work... the sample exe does. PinmemberZarembo Maxim17:40 11 May '05  
GeneralRe: De source does not work... the sample exe does. [modified] PinmemberGMBarak20:10 16 Jan '07  
GeneralRe: De source does not work. vs manifest Pinmemberpg--az19:19 24 Apr '09  
GeneralMAHAssistance: a Nifty program that used this article (Thanks to Author) PinmemberBehzad Ebrahimi22:48 7 Nov '04  
GeneralRe: MAHAssistance: a Nifty program that used this article (Thanks to Author) PinmemberZarembo Maxim9:31 8 Nov '04  
GeneralThanks very much! PinmemberChris Hills5:04 7 Jul '04  
GeneralRe: Thanks very much! PinmemberZarembo Maxim1:21 29 Jul '04  
GeneralWrapping the text PinmemberBalkrishna Talele0:49 22 Apr '04  
GeneralRe: Wrapping the text PinmemberZarembo Maxim2:56 22 Apr '04  
GeneralUnregistering Tooltips rect PinmemberMajid Shahabfar1:28 16 Dec '02  
GeneralExcellent article Pinmemberdabs0:36 3 Sep '02  
GeneralAdding tooltip to picture control PinsussAnonymous0:38 2 Sep '02  
GeneralRe: Adding tooltip to picture control PinmemberChopper0:27 18 Dec '02  
Generalres directory missing from source PinmemberAndreas Saurwein22:59 1 Sep '02  
GeneralRe: res directory missing from source PinsussAnonymous23:47 1 Sep '02  
GeneralC++ .NET question PinsussAnonymous3:45 12 Aug '02  
GeneralRe: C++ .NET question PinsussAnonymous21:19 12 Aug '02  
I am glad, that my source was useful for you. Now I haven't .Net and i can not advise any things. But I saw this problem already, but haven't time for decide this problem. When at me time will appear, I necessarily shall solve this problem and I shall send its decision to you.
GeneralRe: C++ .NET question PinsussAnonymous0:05 2 Sep '02  
GeneralRe: C++ .NET question PinmemberRedwings6:42 18 Sep '02  
GeneralRe: C++ .NET question PinsussAnonymous17:01 16 Oct '02  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 2 Sep 2002
Article Copyright 2002 by Zarembo Maxim
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid