![]() |
Handle des activen Fenster
Wie bekomme ich das Handle das Activen Fensters. Dabei ist dieses Fenster nicht von meiner Anwendung (die ist im Hintergrund).
|
|
Dafür git es die API GetForegroundWindow. Sie liefert das Handle und braucht keine Parameter.
|
@Chewie: Das im Vordergrund stehende Fenster muss aber nicht das aktive sein, deshalb muss man GetActiveWindow() benutzen.
MfG, d3g |
Was ist denn da eigentlich der Unterschied? Aus dem SDK werd ich nicht so richtig schlau.
|
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 |
Probier mal das aus:
Delphi-Quellcode:
Bei mir ist das ActiveWindow sowie das ForegroundWindow gleich dem Formular-Handle. Das Active Window ist also nicht das Fenster, das den Fokus hat.
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)); |
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