Close Borland Delphi With User Approval: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library)
 
m (Updated author and download links, and changed format of some pages.)
Line 27: Line 27:
</highlight-nsis>
</highlight-nsis>


Page author: amlsydney
Page author: [[User:amlsydney|amlsydney]]

Revision as of 12:37, 23 April 2005

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

Page author: amlsydney