Hallo rollstuhlfahrer,
nachdem was ich bisher gefunden habe, ist INVALID_HANDLE(_VALUE) für Rückgaben gedacht. Dennoch vielen Dank!
Ansonsten dürfte die Frage mit dem 0-
Handle geklärt sein.
Getreu dem Motto "Wer lesen kann, ist besser dran!" oder "Warum in die Ferne schweifen, ..."
Denn ein Blick in die Hilfe (Platform
SDK) bringt folgende Erkenntnis zu Tage:
Zitat:
The OpenClipboard function opens the clipboard for examination and
prevents other applications from modifying the clipboard content.
Syntax
BOOL OpenClipboard(HWND hWndNewOwner);
Parameters
hWndNewOwner
[in]
Handle to the window to be associated with the open clipboard.
If this parameter is NULL, the open clipboard is associated with the current task.
. . .
Jetzt könnte man höchstens noch eine Grundsatzdiskussion führen, ob 0 = NULL ist. Normalerweise wird in Delphi Nil für das NULL aus C++ verwendet. "OpenClipboard(nil);" wird jedoch vom Compiler nicht akzeptiert.
Guido.