Socket Server with user interface : Socket Server « Socket Network « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Socket Network » Socket Server 
22.10.3.Socket Server with user interface
Socket Server with user interface
Imports System.Text
Imports System.Net.Sockets
Imports System.Threading

Imports System.Windows.Forms

public class SocketServerUI
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub
End class

Public Class Form1
    Inherits System.Windows.Forms.Form

    Public Sub New()
        MyBase.New()
        InitializeComponent()

    End Sub

    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is NothingThen
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    Private components As System.ComponentModel.IContainer

    Friend WithEvents btnListener As System.Windows.Forms.Button
    Friend WithEvents lblMessage As System.Windows.Forms.Label
    Friend WithEvents lblConnection As System.Windows.Forms.Label
    Friend WithEvents lblPort As System.Windows.Forms.Label
    Friend WithEvents txtPort As System.Windows.Forms.TextBox
    Friend WithEvents btnClose As System.Windows.Forms.Button
    Friend WithEvents txtContent As System.Windows.Forms.TextBox
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents btnWrite As System.Windows.Forms.Button
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        Me.btnListener = New System.Windows.Forms.Button()
        Me.lblMessage = New System.Windows.Forms.Label()
        Me.lblConnection = New System.Windows.Forms.Label()
        Me.lblPort = New System.Windows.Forms.Label()
        Me.txtPort = New System.Windows.Forms.TextBox()
        Me.btnClose = New System.Windows.Forms.Button()
        Me.txtContent = New System.Windows.Forms.TextBox()
        Me.Label1 = New System.Windows.Forms.Label()
        Me.btnWrite = New System.Windows.Forms.Button()
        Me.SuspendLayout()
        '
        'btnListener
        '
        Me.btnListener.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
        Me.btnListener.Location = New System.Drawing.Point(33828)
        Me.btnListener.Name = "btnListener"
        Me.btnListener.Size = New System.Drawing.Size(11332)
        Me.btnListener.TabIndex = 0
        Me.btnListener.Text = "Start Listening"
        '
        'lblMessage
        '
        Me.lblMessage.BackColor = System.Drawing.Color.White
        Me.lblMessage.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
        Me.lblMessage.Location = New System.Drawing.Point(16480)
        Me.lblMessage.Name = "lblMessage"
        Me.lblMessage.Size = New System.Drawing.Size(38924)
        Me.lblMessage.TabIndex = 1
        '
        'lblConnection
        '
        Me.lblConnection.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
        Me.lblConnection.Location = New System.Drawing.Point(6180)
        Me.lblConnection.Name = "lblConnection"
        Me.lblConnection.Size = New System.Drawing.Size(9324)
        Me.lblConnection.TabIndex = 2
        Me.lblConnection.Text = "Connection Message"
        '
        'lblPort
        '
        Me.lblPort.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
        Me.lblPort.Location = New System.Drawing.Point(4133)
        Me.lblPort.Name = "lblPort"
        Me.lblPort.Size = New System.Drawing.Size(11324)
        Me.lblPort.TabIndex = 3
        Me.lblPort.Text = "Port"
        '
        'txtPort
        '
        Me.txtPort.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
        Me.txtPort.Location = New System.Drawing.Point(16431)
        Me.txtPort.Name = "txtPort"
        Me.txtPort.Size = New System.Drawing.Size(13326)
        Me.txtPort.TabIndex = 4
        Me.txtPort.Text = ""
        '
        'btnClose
        '
        Me.btnClose.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
        Me.btnClose.Location = New System.Drawing.Point(47127)
        Me.btnClose.Name = "btnClose"
        Me.btnClose.Size = New System.Drawing.Size(10232)
        Me.btnClose.TabIndex = 5
        Me.btnClose.Text = "Stop Connection"
        '
        'txtContent
        '
        Me.txtContent.Location = New System.Drawing.Point(164120)
        Me.txtContent.Multiline = True
        Me.txtContent.Name = "txtContent"
        Me.txtContent.Size = New System.Drawing.Size(38988)
        Me.txtContent.TabIndex = 6
        Me.txtContent.Text = ""
        '
        'Label1
        '
        Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
        Me.Label1.Location = New System.Drawing.Point(61120)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(9324)
        Me.Label1.TabIndex = 7
        Me.Label1.Text = "Data"
        '
        'btnWrite
        '
        Me.btnWrite.Font = New System.Drawing.Font("Microsoft Sans Serif"12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
        Me.btnWrite.Location = New System.Drawing.Point(573120)
        Me.btnWrite.Name = "btnWrite"
        Me.btnWrite.Size = New System.Drawing.Size(12332)
        Me.btnWrite.TabIndex = 8
        Me.btnWrite.Text = "Write"
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(614)
        Me.ClientSize = New System.Drawing.Size(716261)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.btnWrite, Me.Label1, Me.txtContent, Me.btnClose, Me.txtPort, Me.lblPort, Me.lblConnection, Me.lblMessage, Me.btnListener})
        Me.Name = "Form1"
        Me.Text = "Form1"
        Me.ResumeLayout(False)

    End Sub


    Dim intPort As Integer
    Dim myTcpListener As TcpListener
    Dim myNetworkStream As NetworkStream

    Private Sub btnListener_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnListener.Click
        Dim myThread As New Thread(New ThreadStart(AddressOf StartListen))
        myThread.Start()
    End Sub

    Private Sub StartListen()
        intPort = Integer.Parse(txtPort.Text)
        myTcpListener = New TcpListener(intPort)

        Dim blnConection As Boolean = False

        Try
            myTcpListener.Start()
            lblMessage.Text = "Waiting..."
            Dim mySocket As Socket = myTcpListener.AcceptSocket()


            Do
                If mySocket.Connected = True Then
                    lblMessage.Text = "Port: " + txtPort.Text + "Connected"

                    myNetworkStream = New NetworkStream(mySocket)

                    Dim strContent As String
                    Dim lngByte As Long = myNetworkStream.ReadByte()
                    Dim myByte(lngByteAs Byte

                    myNetworkStream.Read(myByte, 0, lngByte)
                    strContent = Encoding.ASCII.GetString(myByte, 0, lngByte)
                    txtContent.Text = strContent
                End If
            Loop

        Catch ex As SocketException
            MessageBox.Show _
            (ex.Message, "Connection Error", MessageBoxButtons.OK, MessageBoxIcon.Warning)
        End Try

    End Sub

    Private Sub btnClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnClose.Click
        myTcpListener.Stop()
    End Sub

    Private Sub btnWrite_Click(ByVal sender As System.Object, ByVal e As System.EventArgsHandles btnWrite.Click
       

        Dim strTest As String = txtContent.Text
        Dim myBytes() As Byte = Encoding.ASCII.GetBytes(strTest)

        lblMessage.Text = ("Message")
        myNetworkStream.Write(myBytes, 0, myBytes.Length)
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgsHandles MyBase.Load

    End Sub
End Class
22.10.Socket Server
22.10.1.Socket server
22.10.2.Date time server based on System.Net.Sockets.Socket
22.10.3.Socket Server with user interfaceSocket Server with user interface
22.10.4.Using Async Socket ServerUsing Async Socket Server
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.