Good day
how can i put the try catch statement in a single variable?
thanks.
how can i put the try catch statement in a single variable?
Try
msg = Encoding.ASCII.GetBytes("Mlock")
handler.Send(msg)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
thanks.