This project shows you how to make a chat application step-by-step in Microsoft Visual C#. This project uses a UDP (User Datagram Protocol) Socket connection between two chat applications. This chat application can work within the same network or across networks.
However, in this project, I shall be focusing on how to communicate asynchronously with two chat applications. An Asynchronous Communication system is a way of communicating where both sides can communicate simultaneously with each other. For example, a telephone call is an example of asynchronous communication system.
I am going to show you step-by-step skipping no step.
Step 1: First make a project, go to Microsoft Visual C# then create a project.
Step 2: Design the Chat Application form with TextBox, label, button and group boxes.
Give the form objects names as in the following:
Your IP textbox name = textLocalIp,
Your Port textbox name = textLocalPort,
Friend's IP textbox name = textFriendsIp
Friend's Port textbox name = textFriendsPort
Listbox Message name = listMessage,
Textbox for Message sending name = textMessage,
Start Button name = buttonStart,
Send Button name = buttonSend
Step 3: Add 2 namespaces to the project.
Step 4 : Add the following code for the form load, double-click on the form then write the following code.
Then add a method GetLocalIP() as follows. This method will return the Local IP address to the text boxes.
Step 5: Add the following code under the Start Button click event.
Now, you need to add a callback function MessageCallBack. Just add the following code.
Step 6: In this step you need to add the following code for the send button click event.
Step 7: Now build the project by clicking the Build menu then the Build Solution sub-menu. And now go to the project folder and go inside the project folder to the bin folder then bin debug. In the debug folder you will see the ChatApps.exe file.
Open two instances for testing purposes in your computer, then give a different Port number as you are listening in the same IP. Then connect both Applications and start sending messages. I hope you will enjoy this project. If you want to chat with your friends or colleagues in the LAN or the same network then give them a copy of ChattApps.exe and now you will be able to chat from a different computer.