Click here to Skip to main content
Click here to Skip to main content

A TCP/IP Chat Program

By , 20 Aug 2009
 

Introduction

For a while now, I have been looking for a solution to a chat program developed in VB.NET, but didn't find much, so I decided to try my own. The purpose of this article is to explain how to use TCP/IP Sockets and the My.Settings class included in .NET framework 2.0 and later. The good thing about this application is, the server and the client are not two separate applications. This form acts as both the Server and the Client.

Before You Start

Instead of creating my own file transfer functionality, I stumbled upon the UnoLibs.Net.dll. The beauty of this class is that all the work is done for you. Later in the article, I will explain how to put this code into practice.

To obtain a copy of this class, click here.

The Application

Using the Application (Rapid Chat)

  • To add a new IP address to the address box, double click your display picture.
  • Right click the "Send" button for more options.
  • Make sure the selected client is available by clicking the Connect button.

1. Sending Messages Using TCP/IP

First off, we need to make some declarations:

Imports System.Net.Sockets
Imports System.Threading 

Dim Listener As New TcpListener(65535)
Dim Client As New TcpClient
Dim Message As String = ""

You can use any socket you want. I usually choose one of the last few sockets just to be sure no other application is using them. Anything up to and including port 65535 is suitable for the job.

Now we need to start the listening process. This opens the specified socket to receive any packets of data sent to it. In the load event of the form, start the listener.

Dim ListenerThread As New Thread(New ThreadStart(AddressOf Listening))
ListenerThread.Start()

Private Sub Listening()
    Listener.Start()
End Sub

The listener would be useless without a timer. We need the timer to constantly update the listener to receive data.

Private Sub Timer1_Tick(ByVal sender As System.Object, _
            ByVal e As System.EventArgs) Handles Timer1.Tick
    If Listener.Pending = True Then
        Message = ""
    Client = Listener.AcceptTcpClient()

    Dim Reader As New StreamReader(Client.GetStream())
    While Reader.Peek > -1
        Message = Message + Convert.ToChar(Reader.Read()).ToString
    End While
    RichTextBox1.ForeColor = Color.Black
    RichTextBox1.Text += Message + vbCrLf
    'Here you can enter anything you would like 
    'to happen when a message is received,
    'For instance; Play a sound, Show a message Box, A Balloon Tip etc.
End Sub

Now to send a message to a particular client:

Private Sub btnSend_Click(ByVal sender As System.Object, _
            ByVal e As System.EventArgs) Handles btnSend.Click
    If txtName.Text = "" Or cmbAddress.Text = "" Then
        'Check to make sure that the user has entered 
        'a display name, and a client IP Address
        'If Not, Show a Message Box
        MessageBox.Show("All Fields must be Filled", _
                        "Error Sending Message", _
                        MessageBoxButtons.OK, MessageBoxIcon.Error)
    Else
        Try
            Client = New TcpClient(cmbAddress.Text, 65535)

            'Declare the Client as an IP Address. 
            'Must be in the Correct form. eg. 000.0.0.0
            Dim Writer As New StreamWriter(Client.GetStream())
            Writer.Write(txtName.Text & " Says:  " & txtmessage.Text)
            Writer.Flush()

            'Write the Message in the stream

            RichTextBox1.Text += (txtName.Text & " Says:  " & txtmessage.Text) + vbCrLf
            txtmessage.Text = ""
        Catch ex As Exception
            Console.WriteLine(ex)
            Dim Errorresult As String = ex.Message
            MessageBox.Show(Errorresult & vbCrLf & vbCrLf & _
                            "Please Review Client Address", _
                            "Error Sending Message", _
                            MessageBoxButtons.OK, MessageBoxIcon.Error)
        End Try

    End If
End Sub

And that's it for sending messages.

Now to set up file transferring using UnoLibs.Net.dll.

2. File Transfer Using the UnoLibs.Net.dll Class

The thing I love about this class is it is so simple to use. It's quick, easy, and best of all, it works!

Start off by referencing it in your project.

Imports UNOLibs.Net.ClientClass

Declare the client and the server.

Dim clnt As New UNOLibs.Net.ClientClass
Dim WithEvents server As UNOLibs.Net.ServerClass

Now to send some files to the client:

Private Sub SendFileToolStripMenuItem_Click(ByVal sender As System.Object, _
            ByVal e As System.EventArgs) Handles SendFileToolStripMenuItem.Click
    OpenFileDialog1.ShowDialog()

    If DialogResult.OK Then
        RichTextBox1.Text += (txtName.Text & " Is Sending You a File...") + vbCrLf
        clnt.SendFiles(cmbAddress.Text, 65533, OpenFileDialog1.FileNames)
    Else
        Exit Sub
    End If

End Sub

Using the My.Settings Class in VB.NET

I decided to put this section in my article because I know there is some confusion when it comes to saving user and/or application settings in VB.NET. The great thing about the My.Settings class is that very little code is needed to save a huge variety of settings. The My.Settings class allows you to save such things as:

  • Strings (most common)
  • Font
  • Form size, colour, state etc.
  • Checkstate
  • Integers
  • And many more

To create a setting, in your project, go to Project > (Your Project Name) Properties, and choose the Settings tab. Enter a name, Type (Usually String), Scope (User or Application), and a value for the setting.

To load a setting at startup, for a string setting, it might look something like this:

TextBox1.Text = My.Settings.RandomString

To change the value of a setting during runtime, it is virtually the same.

My.Settings.RandomString = RichTextBox1.Text

Your application will automatically save user-scoped settings on exit. To enable or disable this setting, do the following:

My.Application.SaveMySettingsOnExit = True
'Or
My.Application.SaveMySettingsOnExit = False

It's as simple as that. No need to load XML files and re-write them.

License

This code can be used freely without limitations. Check the code in the project file for more information on licensing.

History

  • Aug 13, 2009 -- Original Post Date
  • Aug 20, 2009
    • Minor bug Fixes
    • Some features added
    • Missing source files added

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Andrew Courtice
Australia Australia
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionDatabase for Rapid ProjectmemberIrahsyairah16 May '13 - 14:46 
hi andrew .. Can I get the database to your project rapid chat as a reference project for my final year projek .please help me andrew. thank you
Questioncan you help me?membermouse7114 Jan '13 - 18:07 
i can use this program, because i have an error like this
C4F_P2PWinformControls this is missing
and My.Computer.Audio.Play(txtSound.Text) , it is said that not null
Questionwho wan to help me about this software?membermouse71122 Dec '12 - 18:36 
i have a some question , i can not work it,i am using vb2010,when i run it,there is always some error. i need a big help, please.
QuestionWell That's AwesomememberApoorva Gora18 Dec '12 - 0:45 
Brilliant work done and really helping for us Smile | :) thanks mate.
QuestionHi Andrewmembershaha412 Apr '12 - 23:18 
Hi Andrew>> Smile | :)
 
I have a project talk about chat with An Instant Messaging TCP/IP Application..but i faced many difficulties..

Can you help me?
Generalhow to I see other online usersmembervmaxp21 Apr '11 - 3:04 
how to I see other online users
in the current project I can only send files to myself
GeneralMy vote of 4memberbagoes4all28 Dec '10 - 5:35 
nice.. can you post about full project sample chat like mig33 or yahoo... thanks
GeneralMy vote of 5memberiamgowda16 Dec '10 - 23:01 
Simple to use and an awesome application created out of free resources
QuestionMultithread ServermemberM_Amin12 Nov '10 - 4:19 
I have a server with several clients
How do i handle server with several clients?
GeneralMy vote of 5memberandersonguilherm11 Jul '10 - 21:11 
Great
GeneralMy vote of 1memberRio_Grande6 May '10 - 5:40 
.
Rant[My vote of 2] Incomplete codingmemberJSH2313 Apr '10 - 14:13 
I have had to add various coding to the source. Please do check up oin it
GeneralMy vote of 1memberarkamukherjee21 Feb '10 - 20:18 
18 BUGS!!!
Generalfinding dllmemberjoesamraj7 Jan '10 - 21:03 
sorry, i find all the dll files in bin folder
Generalso goodmemberAbdinoo19 Sep '09 - 1:57 
really so good and learned
GeneralMy Vote of 2member_Khallaf18 Sep '09 - 9:14 
'Check to make sure that the user has entered
'a display name, and a client IP Address
'If Not, Show a Message Box

 
Why not grab the remote IP programatically? This is weak approach,
yet, you expect the user to be knowledgeable enough to enter anything
at all. Good Luck Big Grin | :-D
 

If Listener.Pending = True Then
I used to write things like these in my early VB days Wink | ;)
Listener.Pending is a function (i.e. equals the value itself)
so you don't have to compare it to another value.
This should be If Listener.Pending Then
 
And, yet it is not clear to me how are you handling threads?
How do you control them? There seems not to be any kind of thread
control.
GeneralRe: My Vote of 2memberslimtugo6 Sep '10 - 7:15 
Guy you should realize that some people prefer to be verbose while others don't.
Since This
If Listener.Pending = True Then
and this
if Listener.Pending then
both yields the same result whats the big deal? The code should be very easy to understand for beginners. Give some room for those that are still in their "early VB days".
GeneralMy vote of 2member_Khallaf18 Sep '09 - 9:07 
you need to learn more about TcpClient and TcpListener before publishing an article about sample programs done with them. Play more with the two classes and explore properties, functions and methods!
General[My vote of 2] ok articlememberDonsw12 Sep '09 - 16:31 
OK article but you should explain more. how might this work over the internet, also how other chat like others have said msdn has a sample chat. other than liking to do it add something and tell why
 
cheers,
Donsw
My Recent Article : Backup of Data files - Full and Incremental

GeneralHimemberSin Sareth9 Sep '09 - 23:54 
This program i don't know about your code. Please explaine me step by step.
GeneralMy vote of 1memberBooGhost9 Sep '09 - 12:36 
This code does nothing to raise the bar. It is, in fact, considerably worse than the SDK chat sample. Keep at it - someday you will learn something worth sharing.
GeneralMy vote of 1memberPKBoone18 Aug '09 - 5:20 
see messages
Generalbug number 3memberPKBoone18 Aug '09 - 5:18 
Hi,
 
if you leave the program before you enter a display name, then you get the pop up that "all fields must be filled." It's obvious why... because the program wants to send teh message that the user can no longer be messaged.... It's a nice function... but annoying if I hadn't put in a name yet, or if I haven't even connected to anyone yet. I suggest setting a default display name such as "Anonymous".
GeneralBug number 2memberPKBoone18 Aug '09 - 5:14 
Hi,
 
if you click the "clear" button, then the message "Writing message..." appears in the message bar.
 
there also seems to be a missing image on the right side of the tool bar. I only see the missing image symbol. Same goes for the demo.
GeneralRe: Bug number 2memberAndrew Courtice18 Aug '09 - 15:33 
Hi.
 
Just to clear up the confusion.
 
There is no image missing from the toolbar. During debug i set an image in that picturebox, which would have automatically saved in the my.settings class during the form close event. so when you started the application on your computer, the my.settings class would be looking for a location on your computer which does not exist.
 
I should have deleted all of my user settings before i uploaded the solution. sorry bout that.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 20 Aug 2009
Article Copyright 2009 by Andrew Courtice
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid