I'm writing a Remote Webcam Server/Client suite. I am getting the above error thrown when I try to run it. Attached is the CaptureImage() sub and the ReceiveMessage() sub that appear to be throwing the errors. Note I am getting the error thrown on Image = ms.GetBuffer in the CaptureImage sub, and on SendData(Image) in the ReceiveMessage sub.
Public Sub CaptureImage()
Dim data As IDataObject
Dim bmap As Image
Dim ms As New IO.MemoryStream()
SendMessage(hWnd, WM_CAP_EDIT_COPY, 0, 0)
data = Clipboard.GetDataObject()
If data Is Nothing Then Exit Sub
If data.GetDataPresent(GetType(System.Drawing.Bitmap)) Then
bmap = CType(data.GetData(GetType(System.Drawing.Bitmap)), Image)
bmap.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp)
Image = ms.GetBuffer
End If
End Sub
Public Sub ReceiveMessage(ByVal ar As IAsyncResult)
Dim bytesRead As Integer
Try
SyncLock _client.GetStream
bytesRead = _client.GetStream.EndRead(ar)
End SyncLock
If bytesRead < 1 Then
AllClients.Remove(_clientIP)
Exit Sub
Else
Dim messageRecieved As String
Dim i As Integer = 0
Dim start As Integer = 0
While data(i) <> 0
If i + 1 > bytesRead Then Exit While
If data(i) = LF Then
messageRecieved = partialStr & System.Text.Encoding.ASCII.GetString(data, start, i - start)
If messageRecieved.StartsWith("Send") Then
SendData(Image)
End If
start = i + 1
End If
i += 1
End While
If start <> i Then
partialStr = System.Text.Encoding.ASCII.GetString(data, start, i - start)
End If
End If
SyncLock _client.GetStream
_client.GetStream.BeginRead(data, 0, CInt(_client.ReceiveBufferSize), AddressOf ReceiveMessage, Nothing)
End SyncLock
Catch ex As Exception
AllClients.Remove(_clientIP)
Console.WriteLine(ex.ToString)
End Try
End Sub
Your help is much appreciated.