Named Pipe Example for VC++ 32bit (NT)

The client and server apps demonstrate the use of pipes between tasks for data sharing and general communications.  The application is very simple and gives a good demo of the use of pipes.

SERVER
The primary code to pay attention to is in SERVERVW.CPP.  This code sets up a pipe, waits for the client, then starts exchanging data.  Messages are displayed in the main window.

CLIENT
The primary code to pay attention to is in CLIENTVW.CPP.  This code connects to the pipe then starts exchanging data.  Messages are displayed in the main window.

OPERATION
Start the client and the server.  Select PIPES on the server first to setup the named pipe then select PIPES on the client.  10 messages will be exchanged and displayed. 

If you start the client first you will receive erroneous messages since the pipe does not exist.  

No error checking is being done.
