.NET
modeless.asc
Associated article: Modeless Dialog Boxes for Windows
Tags: .NET
_MODELESS DIALOG BOXES FOR WINDOWS_
by Joseph M. Newcomer
[LISTING ONE]
typedef struct modeless {
LPHANDLE hpWnd;
struct modeless * next;
} modeless;
modeless * modeless_list = NULL;
/********************* RegisterModeless *************************************
* Inputs: LPHANDLE hpWnd: Pointer to modelss dialog handle
* Result: void
* Effect: Registers the handle for ...


