FindWindowTitlePart
From SCAR Divi Manual
Definition
function FindWindowTitlePart(Title: AnsiString; CaseSensitive: Boolean): Boolean;
Availability
SCAR Divi 3.00 > Current
Description
Finds a window with it's title containing a certai part specified by Title and if found sets it as the selected client window. If CaseSensitive is true, it will search perform a case sensitive search. Returns true if the window was found.
Example
begin
if FindWindowTitlePart('Notepad', False) then
WriteLn('Found notepad')
else
WriteLn('Didn''t find notepad');
end.