client ------------------------------ 1. CSocket, Client from the menu 2. Display the Part # dialog BEGIN LOOP 3. Send the part # to the server 4. If part# != 99, listen for part desc from the server display the part desc dialog if they hit okay, send the new desc back to the server else send the old desc back to the server 5. Display the part # dialog END LOOP server ------------------------------ 1. CSocket, Server from the menu 2. Listen for part # from client LOOP 3. Send desc to client 4. listen for desc from client 5. listen for part # from client END LOOP