Retrieves the handle to the window that currently has the clipboard open
#include <Clipboard.au3>
_ClipBoard_GetOpenWindow ( )
Success: | The handle to the window that has the clipboard open |
Failure: | 0 if no window has the clipboard open |
If an application or DLL specifies a NULL window handle when calling the _ClipBoard_Open() function, the clipboard is opened but is not associated with a window. In such a case, _ClipBoard_GetOpenWindow() returns 0.
_ClipBoard_GetOwner, _ClipBoard_Open
Search GetOpenClipboardWindow in MSDN Library.
#include "Extras\HelpFileInternals.au3"
#include <Clipboard.au3>
#include <GUIConstantsEx.au3>
#include <WinAPIError.au3>
#include <WindowsStylesConstants.au3>
Example()
Func Example()
Local $hGUI
; Create GUI
$hGUI = GUICreate("Clipboard", 600, 400)
_MemoCreate(2, 2, 596, 396, $WS_VSCROLL)
GUISetState(@SW_SHOW)
; Open the clipboard
If _ClipBoard_Open($hGUI) Then
ShowData($hGUI)
; Close the clipboard
_ClipBoard_Close()
Else
_WinAPI_ShowError("_ClipBoard_Open failed")
EndIf
; Loop until the user exits.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>Example
; Show clipboard statistics
Func ShowData($hGUI)
_MemoWrite("GUI handle ............: " & $hGUI)
_MemoWrite("Clipboard owner .......: " & _ClipBoard_GetOwner())
_MemoWrite("Clipboard open window .: " & _ClipBoard_GetOpenWindow())
_MemoWrite("Clipboard sequence ....: " & _ClipBoard_GetSequenceNumber())
_MemoWrite()
EndFunc ;==>ShowData