Have you tried: SendMessage ( hStatusBarWnd, SB_SETTIPTEXT, (WPARAM)(INT)iStatusBarPart, (LPARAM)(LPCTSTR)lpcszTextToDisplayAsTooltip ); code sequence? The status bar window must be created (as in the following example) using g_hStatusBarWnd = CreateWindowEx ( 0L, STATUSCLASSNAME, 0, WS_CHILD | WS_VISIBLE | SBT_TOOLTIPS, 0, 0, 0, 0, hParentWnd, (HMENU)ID_STATUSBAR, g_hInstance, 0 ); For more information, you can check the WindowsNT System Manager, where you can find, among other stuff like this, also something about status bar APIs. All the best, Sardaukar ================== The original message was: How could I make status bar to show tool tips for its panes?
Regards,
Stefan
----------