Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Handle des activen Fenster (https://www.delphipraxis.net/1847-handle-des-activen-fenster.html)

theomega 27. Dez 2002 11:40


Handle des activen Fenster
 
Wie bekomme ich das Handle das Activen Fensters. Dabei ist dieses Fenster nicht von meiner Anwendung (die ist im Hintergrund).

d3g 27. Dez 2002 11:52

GetActiveWindow()

Chewie 27. Dez 2002 11:52

Dafür git es die API GetForegroundWindow. Sie liefert das Handle und braucht keine Parameter.

d3g 27. Dez 2002 11:55

@Chewie: Das im Vordergrund stehende Fenster muss aber nicht das aktive sein, deshalb muss man GetActiveWindow() benutzen.

MfG,
d3g

Chewie 27. Dez 2002 11:57

Was ist denn da eigentlich der Unterschied? Aus dem SDK werd ich nicht so richtig schlau.

d3g 27. Dez 2002 12:04

Soweit ich das sehe, ist ein "active window" ein Control, das gerade Input vom Keyboard bekommt, ein "foreground window" das, was der normale User unter einem "Fenster" versteht und gerade im Vordergrund ist.

MfG,
d3g

Chewie 27. Dez 2002 12:15

Probier mal das aus:

Delphi-Quellcode:
Edit1.SetFocus;
ListBox1.Items.Add('Formular-Handle: ' + InttoStr(Form1.Handle));
ListBox1.Items.Add('Foreground-Window: ' + InttoStr(GetForegroundWindow));
ListBox1.Items.Add('Button-Handle: ' + InttoStr(Button1.Handle));
ListBox1.Items.Add('Active-Window: ' + InttoStr(GetActiveWindow));
Bei mir ist das ActiveWindow sowie das ForegroundWindow gleich dem Formular-Handle. Das Active Window ist also nicht das Fenster, das den Fokus hat.

d3g 27. Dez 2002 12:54

Hmm... Irgendwie bn ich jetzt ratlos. Nachdem ich mir theomegas nochmal Frage angesehen habe: nimm GetForegroundWindow(), da ich annehme, dass du das Parent-Fenster und kein Control (ob GetActiveWindow() das nun bringt oder nicht) haben willst und in der MSDN-Library "The GetForegroundWindow function returns a handle to the foreground window (the window with which the user is currently working)." steht.

MfG,
d3g


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:02 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz