Vet någon hur man tar ett screenshot sedan sparar det på datorn. (helst så litet som möjligt) En modul, en form, en knapp och en picturebox behövs. Ok.. men det står att det fattas en references .. Screenshot?
nu när jag ändå är på G kan jag oxå fråga om någon vet var man kan hitta guide till treeview och listview?Sv: Screenshot?
Form:
<code>
Private Sub Command1_Click()
Picture1.Pictre = CaptureScreen
SavePicture Picture1.Picture "c:\screen.bmp"
End Sub
</code>
Modul:
<code>
Option Explicit
Global Const INVERSE = 6
Const SOLID = 0
Const DOT = 2
Global HoldX As Single
Global HoldY As Single
Global StartX As Single
Global StartY As Single
Global SavedDrawStyle
Global SavedMode
Option Base 0
Private Type PALETTEENTRY
peRed As Byte
peGreen As Byte
peBlue As Byte
peFlags As Byte
End Type
Private Type LOGPALETTE
palVersion As Integer
palNumEntries As Integer
'Enough for 256 colors
palPalEntry(255) As PALETTEENTRY
End Type
Private Type GUID
Data1 As Long
Data2 As Integer
Data3 As Integer
Data4(7) As Byte
End Type
Private Const RASTERCAPS As Long = 38
Private Const RC_PALETTE As Long = &H100
Private Const SIZEPALETTE As Long = 104
Private Type RECT
Left As Long
Top As Long
Right As Long
Bottom As Long
End Type
Private Type PicBmp
Size As Long
Type As Long
hBmp As Long
hPal As Long
Reserved As Long
End Type
Private Declare Function BitBlt Lib "gdi32" (ByVal hDCDest As Long, ByVal XDest As Long, ByVal YDest As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hDCSrc As Long, ByVal xSrc As Long, ByVal ySrc As Long, ByVal dwRop As Long) As Long
Private Declare Function CreateCompatibleBitmap Lib "gdi32" (ByVal hdc As Long, ByVal nWidth As Long, ByVal nHeight As Long) As Long
Private Declare Function CreateCompatibleDC Lib "gdi32" (ByVal hdc As Long) As Long
Private Declare Function CreatePalette Lib "gdi32" (lpLogPalette As LOGPALETTE) As Long
Private Declare Function DeleteDC Lib "gdi32" (ByVal hdc As Long) As Long
Private Declare Function GetDesktopWindow Lib "USER32" () As Long
Private Declare Function GetDeviceCaps Lib "gdi32" (ByVal hdc As Long, ByVal iCapabilitiy As Long) As Long
Private Declare Function GetForegroundWindow Lib "USER32" () As Long
Private Declare Function GetSystemPaletteEntries Lib "gdi32" (ByVal hdc As Long, ByVal wStartIndex As Long, ByVal wNumEntries As Long, lpPaletteEntries As PALETTEENTRY) As Long
Private Declare Function GetWindowDC Lib "USER32" (ByVal hWnd As Long) As Long
Private Declare Function GetDC Lib "USER32" (ByVal hWnd As Long) As Long
Private Declare Function GetWindowRect Lib "USER32" (ByVal hWnd As Long, lpRect As RECT) As Long
Private Declare Function OleCreatePictureIndirect Lib "olepro32.dll" (PicDesc As PicBmp, RefIID As GUID, ByVal fPictureOwnsHandle As Long, IPic As IPicture) As Long
Private Declare Function RealizePalette Lib "gdi32" (ByVal hdc As Long) As Long
Private Declare Function ReleaseDC Lib "USER32" (ByVal hWnd As Long, ByVal hdc As Long) As Long
Private Declare Function SelectObject Lib "gdi32" (ByVal hdc As Long, ByVal hObject As Long) As Long
Private Declare Function SelectPalette Lib "gdi32" (ByVal hdc As Long, ByVal hPalette As Long, ByVal bForceBackground As Long) As Long
Public PicBuffer As New aDIBSection
Public Function CaptureScreen() As Picture
On Error GoTo ErrorRoutineErr
Dim hWndScreen As Long
'Get a handle to the desktop window
hWndScreen = GetDesktopWindow()
'Call CaptureWindow to capture the entire desktop,
' give the handle and return the resulting Picture object
Set CaptureScreen = CaptureWindow(hWndScreen, _
0, 0, _
Screen.Width \ Screen.TwipsPerPixelX, _
Screen.Height \ Screen.TwipsPerPixelY)
ErrorRoutineResume:
Exit Function
ErrorRoutineErr:
'MsgBox "Project1.Module1.CaptureScreen" & Err & Error
Resume Next
End Function
Public Function CaptureForm(frmSrc As Form) As Picture
On Error GoTo ErrorRoutineErr
'Call CaptureWindow to capture the entire form
'given it's window
'handle and then return the resulting Picture object
Set CaptureForm = CaptureWindow(frmSrc.hWnd, 0, 0, _
frmSrc.ScaleX(frmSrc.Width, vbTwips, vbPixels), _
frmSrc.ScaleY(frmSrc.Height, vbTwips, vbPixels))
ErrorRoutineResume:
Exit Function
ErrorRoutineErr:
MsgBox "Project1.Module1.CaptureForm" & Err & Error
Resume Next
End Function
Public Function CaptureWindow(ByVal hWndSrc As Long, _
ByVal LeftSrc As Long, _
ByVal TopSrc As Long, ByVal WidthSrc As Long, _
ByVal HeightSrc As Long) As Picture
On Error GoTo ErrorRoutineErr
Dim hDCMemory As Long
Dim hBmp As Long
Dim hBmpPrev As Long
Dim rc As Long
Dim hDCSrc As Long
Dim hPal As Long
Dim hPalPrev As Long
Dim RasterCapsScrn As Long
Dim HasPaletteScrn As Long
Dim PaletteSizeScrn As Long
Dim LogPal As LOGPALETTE
'Get device context for the window
hDCSrc = GetWindowDC(hWndSrc)
'Create a memory device context for the copy process
hDCMemory = CreateCompatibleDC(hDCSrc)
'Create a bitmap and place it in the memory DC
hBmp = CreateCompatibleBitmap(hDCSrc, WidthSrc, HeightSrc)
hBmpPrev = SelectObject(hDCMemory, hBmp)
'Get screen properties
'Raster capabilities
RasterCapsScrn = GetDeviceCaps(hDCSrc, RASTERCAPS)
'Palette support
HasPaletteScrn = RasterCapsScrn And RC_PALETTE
'Size of palette
PaletteSizeScrn = GetDeviceCaps(hDCSrc, SIZEPALETTE)
'If the screen has a palette, make a copy
If HasPaletteScrn And (PaletteSizeScrn = 256) Then
'Create a copy of the system palette
LogPal.palVersion = &H300
LogPal.palNumEntries = 256
rc = GetSystemPaletteEntries(hDCSrc, 0, 256, _
LogPal.palPalEntry(0))
hPal = CreatePalette(LogPal)
'Select the new palette into the memory
'DC and realize it
hPalPrev = SelectPalette(hDCMemory, hPal, 0)
rc = RealizePalette(hDCMemory)
End If
'Copy the image into the memory DC
rc = BitBlt(hDCMemory, 0, 0, WidthSrc, HeightSrc, _
hDCSrc, LeftSrc, TopSrc, vbSrcCopy)
'Remove the new copy of the on-screen image
'hBmp = SelectObject(hDCMemory, hBmpPrev)
'If the screen has a palette get back the palette that was
'selected in previously
If HasPaletteScrn And (PaletteSizeScrn = 256) Then
hPal = SelectPalette(hDCMemory, hPalPrev, 0)
End If
'Release the device context resources back to the system
rc = DeleteDC(hDCMemory)
rc = ReleaseDC(hWndSrc, hDCSrc)
'Call CreateBitmapPicture to create a picture
'object from the bitmap and palette handles.
'Then return the resulting picture object.
Set CaptureWindow = CreateBitmapPicture(hBmp, hPal)
ErrorRoutineResume:
Exit Function
ErrorRoutineErr:
'MsgBox "Project1.Module1.CaptureWindow" & Err & Error
Resume Next
End Function
Public Function CreateBitmapPicture(ByVal hBmp As Long, ByVal hPal As Long) As Picture
On Error GoTo ErrorRoutineErr
Dim r As Long
Dim Pic As PicBmp
'IPicture requires a reference to "Standard OLE Types"
Dim IPic As IPicture
Dim IID_IDispatch As GUID
'Fill in with IDispatch Interface ID
With IID_IDispatch
.Data1 = &H20400
.Data4(0) = &HC0
.Data4(7) = &H46
End With
'Fill Pic with necessary parts
With Pic
'Length of structure
.Size = Len(Pic)
'Type of Picture (bitmap)
.Type = vbPicTypeBitmap
'Handle to bitmap
.hBmp = hBmp
'Handle to palette (may be null)
.hPal = hPal
End With
'Create Picture object
r = OleCreatePictureIndirect(Pic, IID_IDispatch, 1, IPic)
'Return the new Picture object
Set CreateBitmapPicture = IPic
ErrorRoutineResume:
Exit Function
ErrorRoutineErr:
Resume Next
End Function
</code>Sv: Screenshot?
Public PicBuffer As New aDIBSection
vad heter den jag ska lägga till?