VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Screen Capture Module 1.0. Includes a function for capturing the entire screen and dumping it onto

Jonathan Liu  (9 Submissions)   Graphics   VB 6.0   Unknown Difficulty   Thu 7th February 2002   Mon 8th February 2021

Screen Capture Module 1.0. Includes a function for capturing the entire screen and dumping it onto an compatible object with a hDC property.

API Declarations


'by Buttress Root Software
'
'Programmed by Jonathan Liu
'Copyright ©1999-2371 Buttress Root Software. All rights reserved.

Private Declare Function GetDesktopWindow Lib "user32" () As Long
Private Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long
Private Declare Function ReleaseDC Lib "user32" (ByVal hwnd As Long, ByVal hdc As Long) As Long
Private Declare Function BitBlt Lib "gdi32" (ByVal hDestDC As Long, ByVal X As Long, ByVal Y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hSrcDC As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal dwRop As Long) As Long
Private Const SRCCOPY = &HCC0020

Rate Screen Capture Module 1.0. Includes a function for capturing the entire screen and dumping it onto (1(1 Vote))
Screen Capture Module 1.0. Includes a function for capturing the entire screen and dumping it onto .bas

Screen Capture Module 1.0. Includes a function for capturing the entire screen and dumping it onto Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters