Difference between revisions of "ActivateWindow"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure ActivateWindow(const Wnd: Hwnd); </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Brings a win...")
 
Line 1: Line 1:
 
==Definition==
 
==Definition==
 
<source lang="scar" lines="false">
 
<source lang="scar" lines="false">
procedure ActivateWindow(const Wnd: Hwnd);
+
function GetDesktopWindow: Hwnd;
 
</source>
 
</source>
  
Line 8: Line 8:
  
 
==Description==
 
==Description==
Brings a window specified by the window handle '''Wnd''' to the foreground.
+
Returns the handle to the desktop window.
  
 
==Example==
 
==Example==
 
<source lang="scar">
 
<source lang="scar">
var
 
  Wnds: THwndArray;
 
 
 
begin
 
begin
   Wnds := FindWindowsEx(GetDesktopWindow, 'notepad', '', False, False, True);
+
   WriteLn(GetWindowClass(GetDesktopWindow));
  if Length(Wnds) > 0 then
 
    ActivateWindow(Wnds[0]);
 
 
end.
 
end.
 
</source>
 
</source>
 +
 +
==See Also==
 +
*[[GetShellWindow]]
 +
*[[GetActiveWindow]]
 +
*[[GetParentWindow]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Window Functions]]
 
[[Category:Window Functions]]

Revision as of 13:28, 7 August 2012

Definition

function GetDesktopWindow: Hwnd;

Availability

SCAR Divi 3.35 > Current

Description

Returns the handle to the desktop window.

Example

begin
  WriteLn(GetWindowClass(GetDesktopWindow));
end.

See Also