Anonymous-ChatProject using C# in my university.
Server: Client connection, server record storage, hourly recording
Client: Server connection, font setting and background setting through dialog, chat window initialization, chat window saving, copying, and pasting through menu strip
- Change in the server code can only be applied to open ports that are not used.
- Before running the chat program (client program), the server must first be turned on.
- Server can save the server's chat history as a text file through a menu strip.
- clientSocket.Connect ("127.0.0.1", 9999); //127.0.0.1 >> Change the server to the IP of the computer to operate.
- If you are going to communicate externally in the Connect statement, write the external IP, and the port number is an unused open port.
- If you are going to run it on your own computer, set it to 127.0.0.1, the local IP, and write an open port that is not used.
- Start the server first, and run the chat program (client). Write the nickname in the nickname box at the top and click the connect button to connect to the chat server.
- 1: N function and multiple access are possible.