Close Borland Delphi With User Approval: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated author links.) |
m (Added category links.) |
||
Line 30: | Line 30: | ||
FunctionEnd | FunctionEnd | ||
</highlight-nsis> | </highlight-nsis> | ||
[[{{ns:14}}:Other Products Handling Functions]] |
Revision as of 21:29, 30 April 2005
Author: amlsydney (talk, contrib) |
Description
Here is a function for anyone who needs to install components into Borland Delphi and therefore requires it to be NOT RUNNING... but of course we do not want to force Delphi to exit without saying at least something to the user...
; ----------------------------------------------------------------------------- Function CloseDelphiWithUserApproval ; Inspired by [[Detect & Close Winamp]] ; ----------------------------------------------------------------------------- Push $5 loop: FindWindow $5 "TAppBuilder" IntCmp $5 0 done MessageBox MB_RETRYCANCEL|MB_ICONSTOP 'The Borland Delphi IDE may not be running during this installation.$\r$\nClose the IDE manually now, or press Retry for automatic closing of Delphi, or press Cancel to cancel the installation entirely.' IDCANCEL BailOut SendMessage $5 16 0 0 Sleep 1000 Goto loop BailOut: Abort done: Pop $5 FunctionEnd