R
rackrain
Unregistered / Unconfirmed
GUEST, unregistred user!
我要用另一个程序发送消息来关闭一个程序,可是被关闭的程序在退出时有提示,请问应该如何做?<br>被关闭的程序在事件中:<br>procedure TForm1.FormClose(Sender: TObject; var Action: TCloseAction);<br>begin<br>if application.messagebox('你是否确定要退出','提示',MB_YESNO+Mb_IconQuestion)=IDYES<br> then Action := caFree<br> else Action:= caNone;<br>end;<br><br>我的程序这样写:<br>procedure Tqq.Button1Click(Sender: TObject);<br>var handle:integer;<br>begin<br> handle:=findwindow('Tform1',nil);<br> if handle<>0 then<br> sendmessage(handle,WM_Close,0,0);<br>被关闭的程序弹出一个提示框选择是否关闭,请问语句应该如何写?