.NET
win3prt.asc
Associated article: Printing From Windows 3
Tags: .NET
_PRINTING FROM WINDOWS 3_
by Michael J. Young
[Example 1]
BOOL FAR PASCAL AbortProc (HDC HPrnDC,short Code)
{
MSG Msg;
while (!UserAbort && PeekMessage (&Msg,NULL,0,0,PM_REMOVE))
{
TranslateMessage (&Msg);
DispatchMessage (&Msg);
}
return (!UserAbort);
} // end AbortProc
[Example 2]
HWND ...


