Hi,
Try a little utility that resides in the task bar called PrintKey. I think its freeware. It's just a small .exe that you double-click and it lets you capture and size anything on your desktop. Powerful little program.
You can get it from "downloads\utilities" at
' Captures full screen, unless CurrentWindow is set to True, in which case
' active window is captured. Captured image is returned as StdPicture
Private Function SnapShot(Optional CurrentWindow As Boolean) As StdPicture
' Simulate pressing appropriate keys
If CurrentWindow Then keybd_event VK_MENU, 0, 0, 0
keybd_event VK_SNAPSHOT, 1, 0, 0
' Let the system respond
DoEvents
' Unpress the keys
keybd_event VK_SNAPSHOT, 0, KEYEVENTF_KEYUP, 0
If CurrentWindow Then keybd_event VK_MENU, 0, KEYEVENTF_KEYUP, 0
Set SnapShot = Clipboard.GetData
I think that you could just use the "Print Screen" button on your keyboard. I have done this many times. It captures your entire screen, and saves it to the clipboard. You can then go to paint, or some other photo management, and paste it. You can cut off all of the outside junk, and just leave the form.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.