1 Attachment(s)
client screen cature to server app
I have seen a few postings for a similar questions, but none really answered my questions.
I am attempting to create a client/server application that passes a screen shot from a client computer to a server computer. I am using a module and form code that I have tested on a single computer and it works great. Now I have to pass the image
somehow from the client to the server. I am using MSWinsock between the computers (but am open to any suggestions as to other ways to pass the image). Attached is the Module I use for the screen capture.
This is the code in the form:
Set imgList1.Picture = CaptureWindow(0, 0, 0, Screen.Width / Screen.TwipsPerPixelX, Screen.Height / Screen.TwipsPerPixelY)
screen capture over network
I am attempting to pass a screen capture from a client machine to a server machine via Winsock. I would rather not save the image to the clipboard and then transfer the image, this take up too many resources.
If you have any suggestions on how to do this I would greatly appreciate the help.