Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
LesFerch authored Nov 24, 2024
1 parent d9d8aa8 commit d93fae4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Tools/CaptureCustom.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ oWSH = WScript.CreateObject("Wscript.Shell");
oFSO = WScript.CreateObject("Scripting.FileSystemObject");

function MsgBox(prompt, buttons, title) {
oWSH.Popup(prompt, 0, title, buttons);
var result = oWSH.Popup(prompt, 0, title, buttons);
return(result);
}

Temp = oWSH.ExpandEnvironmentStrings("%Temp%");
Expand Down
3 changes: 2 additions & 1 deletion Tools/WinSetView.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ oWSH.CurrentDirectory = MyPath;
Z = "\r\n"; ZZ = Z + Z;

function MsgBox(prompt, buttons, title) {
oWSH.Popup(prompt, 0, title, buttons);
var result = oWSH.Popup(prompt, 0, title, buttons);
return(result);
}

if (!oFSO.FileExists(INIFile)) {
Expand Down

0 comments on commit d93fae4

Please sign in to comment.