InetError Example for C++ 5.0 and later

Note:

This is not a complete example for handling events, some steps have been omitted. For a complete example of how to handle events, refer to the example Initializing a Computer as a Server and Accepting Connections.

void CRasterInetSink::OnInetError(short iComputer, short iMessage, short iError)
{
   TCHAR szText[80];
   wsprintf(szText, TEXT("Computer %d had Error: %d (%d)"), iComputer, iError, iMessage);
   AfxMessageBox(szText);
}