vote up 0 vote down star

i tried the following code but it does not retrieve text from foreground window!

procedure TForm1.Button1Click(Sender: TObject);
 var
  title : pansichar;
  s : string;
begin
    GetWindowText(GetForegroundWindow(), title,GetWindowTextLength(GetForegroundWindow()) + 1);
    s := title;
    showmessage(s);
end;
flag

0% accept rate
Your code says "Form1" to me. And this is the title (= text) of the current active window. – Ulrich Gerhardt Sep 16 at 16:08
Shouldn't that "title" pointer actually be pointing to something on the way in? – mj2008 Sep 16 at 16:12
its giving me access voilation error and if i initialize the title it just gives initialized value – omair iqbal Sep 16 at 16:16
1  
ALWAYS specify version of delphi - it's often crucial – Argalatyr Sep 16 at 16:44

5 Answers

vote up 0 vote down
procedure TForm1.Button1Click(Sender: TObject);
var
  liHwnd, liLength : Integer;
  lpChar : PChar;
begin
  liHwnd := GetForegroundWindow();
  liLength := GetWindowTextLength(liHwnd) + 1;
  lpChar := StrAlloc(liLength);
  Try
    GetWindowText(liHwnd, lpChar, liLength);

    showmessage(lpChar);
  Finally
    StrDispose(lpChar);
  End;
end;
link|flag
vote up 0 vote down

Can it be, that you have this issue?

link|flag
vote up 3 vote down

Use this one:

var
  hwndForeground: HWND;
  titleLength: Integer;
  title: string;
begin
  hwndForeground := GetForegroundWindow();
  titleLength := GetWindowTextLength(hwndForeground);
  SetLength(title, titleLength);
  GetWindowText(hwndForeground, PChar(title), titleLength + 1);
  title := PChar(title);

  ShowMessage(title);
end;
link|flag
I've edited this to make it work for Unicode versions of Delphi as well. – Rob Kennedy Sep 16 at 18:49
vote up 2 vote down

Try this code

procedure TForm1.Button1Click(Sender: TObject);
 var
  title : array[0..254] of Char;
  s : string;
begin
    GetWindowText(GetForegroundWindow(), title,255);
    s := title;
    showmessage(s);
end;

Bye.

link|flag
now i am getting this error:[Error] Unit1.pas(31): Incompatible types: 'Array' and 'PAnsiChar' – omair iqbal Sep 16 at 16:21
btw i am using delphi 7 maybe widechars are not supported – omair iqbal Sep 16 at 16:23
yes removing ''wide'' made it work but why didnt widechar work? – omair iqbal Sep 16 at 16:25
ok, i think you have delphi 2009 o 2010. – RRUZ Sep 16 at 16:30
no i have delphi 7 personal edition – omair iqbal Sep 16 at 16:32
show 2 more comments
vote up 2 vote down

Replace this line:

  title : pansichar;

with this:

  title: array[0..255] of Char;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.