Print Screen (take a picture of the screen)
Take a picture of the screen
Assumes
Found off the web
API Declarations
Declare Sub keybd_event Lib "user32" _
(ByVal bVk As Byte, ByVal bScan As Byte, _
ByVal Flags As Long, ByVal ExtraInfo As Long)
Rate Print Screen (take a picture of the screen)
(38(38 Vote))
Sub ScreenToClipboard()
Const VK_SNAPSHOT = &H2C
Call keybd_event(VK_SNAPSHOT, 1, 0&, 0&)
End Sub
Print Screen (take a picture of the screen) Comments
No comments yet — be the first to post one!
Post a Comment