I have two windows in separate applications. The first application has a button that starts the second application with its window handle and process id:

procedure TForm1.Button1Click(Sender: TObject);
begin
  WinExec(PChar('Second.exe ' + IntToStr(Handle) + ' ' + IntToStr(GetCurrentProcessId)), SW_SHOWDEFAULT);
end;

The second application also has a button which should set the foreground window to the first application:

function AllowSetForegroundWindow(AHandle: HWND): Boolean; external 'user32.dll';

procedure TForm1.Button1Click(Sender: TObject);
begin
  if not AllowSetForegroundWindow(StrToInt(ParamStr(2))) then begin
    ShowMessage('ERROR');
    Exit;
  end;
  SendMessage(StrToInt(ParamStr(1)), WM_APP + 1, 0, 0);
end;

The first application has a message handler that handles WM_APP + 1 like this:

procedure TForm1.WWAppPlusOne(var Msg: TMsg);
begin
  Application.BringToFront;
end;

When I start the first application and press on the button, the second application starts. When I press the button on the second application it shows ERROR.

What am I doing wrong here?

link|improve this question

1  
WinExec has been deprecated for over 15 years. Isn't it time we all stopped using it in new code? – Rob Kennedy Feb 22 at 17:33
@RobKennedy I don't use it in production code, this was just a quick and dirty example where I didn't want to write all the CreateProcess stuff. – Jens Mühlenhoff Feb 23 at 9:40
feedback

1 Answer

up vote 3 down vote accepted

Your declaration of AllowSetForegroundWindow is incorrect. You have omitted the calling convention. The data types you have used are wrong too, although that's probably benign for you at the moment.

It should look like this:

function AllowSetForegroundWindow(dwProcessId: DWORD): BOOL;
    stdcall; external 'user32.dll';
link|improve this answer
1  
Ouch, it has been a too long programming session today, I guess :-\. – Jens Mühlenhoff Feb 22 at 16:48
feedback

Your Answer

 
or
required, but never shown

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