Changes

Drawing, Graphics, and Images VB6

467 bytes added, 06:18, 11 February 2008
The following lines were added (+) and removed (-):
 == Animation and API Calls ===== BitBlt === Option Explicit 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 Sub cmdBitBlt_Click()  Me.Cls  BitBlt Me.hDC, 0, 0, picBitBlt.ScaleWidth, picBitBlt.ScaleHeight, picBitBlt.hDC, 0, 0, vbSrcCopy End Sub
Bureaucrat, administrator
16,192
edits