Close Borland Delphi With User Approval: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated author and download links, and changed format of some pages.) |
m (Adding new author and category links.) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{PageAuthor|amlsydney}} | |||
== Description == | == 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... | 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... | ||
Line 27: | Line 29: | ||
</highlight-nsis> | </highlight-nsis> | ||
[[Category:Other Products Handling Functions]] |
Latest revision as of 11:56, 24 June 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