vb.net screencapture

Questions about programming languages and debugging
Post Reply
User avatar
killswitch666
Newbie
Newbie
Posts: 8
Joined: 06 May 2009, 16:00
14
Location: United States
Contact:

vb.net screencapture

Post by killswitch666 »

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

Code: Select all

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 :D

Post Reply