Tools
callout.txt
Associated article: Building a Callout Control
Tags: .NET Tools
Published source code accompanying the article by by Thiadmer Riemersma in which he shows how balloon-style Windows controls are configurable for many purposes. Also see CALLOUT.ZIP.
Building a Callout Control
by Thiadmer Riemersma
Example 1:
#include "callout.h"
LoadLibrary("callout.dll");
HWND hwndCallout = CreateWindow("Callout",
"Guess what this icon does...",
WS_POPUP, 0, 0, 0, 0,
NULL, 0, hInstance, NULL);
SendMessage(hwndCallout, CM_SETANCHOR, 0, ...


