2021-01-07から1日間の記事一覧

inno setup で強制終了

[Code] procedure TaskKill(FileName: String); var ResultCode: Integer; begin Exec(ExpandConstant('taskkill.exe'), '/f /im ' + FileName , '', SW_HIDE, ewWaitUntilTerminated, ResultCode); end; ... TaskKill('excel.exe'); ネタ元 https://alwayse…

inno setup でYes/Noダイアログ

// Ask the user a Yes/No question if MsgBox('Are you sure?', mbConfirmation, MB_YESNO) = IDYES then begin // user clicked Yes end else begin // user clicked No end; ネタ元 https://jrsoftware.org/ishelp/index.php?topic=isxfunc_msgbox