Jump to content

Program ScreenCaptureEx


wolf9228
 Share

Recommended Posts

UEZ is right...

http://msdn.microsoft.com/en-us/library/dd145136%28v=vs.85%29.aspx

#include <WinApi.au3>

; The Virtual Screen
; http://msdn.microsoft.com/en-us/library/dd145136%28v=vs.85%29.aspx

; GetSystemMetrics
; http://msdn.microsoft.com/en-us/library/windows/desktop/ms724385%28v=vs.85%29.aspx
Global Const $SM_XVIRTUALSCREEN = 76 ; The coordinates for the left side of the virtual screen.
Global Const $SM_YVIRTUALSCREEN = 77 ; The coordinates for the top of the virtual screen.
Global Const $SM_CXVIRTUALSCREEN = 78 ; The width of the virtual screen, in pixels.
Global Const $SM_CYVIRTUALSCREEN = 79 ; The height of the virtual screen, in pixels.

MsgBox(0, "", _WinAPI_GetSystemMetrics($SM_XVIRTUALSCREEN) & "x" & _WinAPI_GetSystemMetrics($SM_YVIRTUALSCREEN) & @CRLF & _WinAPI_GetSystemMetrics($SM_CXVIRTUALSCREEN) & "x" & _WinAPI_GetSystemMetrics($SM_CYVIRTUALSCREEN))

Thank KaFu

صرح السماء كان هنا

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...