Does anybody have any good links to some to tutorials on how to do this. Ive tried google and youtube, but the results were poor. I found some code on how to take the screen shot
Private Sub Timer1_Tick(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Timer1.Tick
Dim BackUpClipboard As String = My.Computer.Clipboard.GetText
SendKeys.Send("{PRTSC}")
PictureBox1.Image = My.Computer.Clipboard.GetImage
End Sub
but I just cant figure out how to send this bitmap image from a server to a client?
thanks in advance