I have an application where a program sends some data out a socket to a barcode printer. It works fine until they kill the power to the printer. After this happens I can not seem to reconnect automatically. How would I know that they have turned the power off or how can it automatically reconnect?
This is just my example to work with and works off a button click and a textbox
Thanks,
Bill M
This is just my example to work with and works off a button click and a textbox
Thanks,
Bill M
Code:
Imports System.Net.Sockets
Imports System.Text
Public Class Form1
Dim printerconnection As New System.Net.Sockets.TcpClient()
Function FormatBarcode(ByVal input As String) As String
Dim mystring As String
Dim humanreadable As String = input.Insert(6, " ")
Dim start As Char = Convert.ToChar(2)
Dim es As Char = Convert.ToChar(27)
Dim done As Char = Convert.ToChar(3)
mystring = start & es & "A" & es & "%3" & es & "H0700" & es & "V0300" & es & "BG06400>I>F" & input & es & "H0300" & es & "V0075" & es & "$A,225,225,0" & es & "$=" & humanreadable & es & "Z" & done
FormatBarcode = mystring
End Function
Private Sub Print_Barcode(ByVal input As String)
Try
Dim sendbytes As [Byte]() = Encoding.ASCII.GetBytes(input)
Dim printersend As NetworkStream = printerconnection.GetStream()
If printerconnection.Connected = False Then
printerconnection.Connect("10.0.0.2", 9100)
End If
If printersend.CanWrite = True Then
printersend.Write(sendbytes, 0, sendbytes.Length)
Else
MessageBox.Show("Connection Lost", "Connection")
End If
Catch ex As Exception
messagebox.show(ex.Message, "Error")
End Try
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
Dim input As String = TextBox1.Text
input = FormatBarcode(input)
Print_Barcode(input)
Catch ex As Exception
MessageBox.Show(ex.Message, "Error in Button")
End Try
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Try
printerconnection.Connect("10.0.0.2", 9100)
Catch ex As Exception
MessageBox.Show(ex.Message.ToString)
End Try
End Sub
End Class