quote:
Originally posted by -!Felu!-
Debug Window
quote:
Error: unknown.
Line: 86. Code: -2147024894.
Function OnEvent_MenuClicked returned an error. Code: -2147352567
Line 86
code:
new ActiveXObject("WScript.Shell").Run("%windir%\\notepad.exe " + MsgPlus.ScriptFilesPath+"\\emails.txt");
Use code:
new ActiveXObject("WScript.Shell").Run("notepad.exe " + MsgPlus.ScriptFilesPath+"\\emails.txt");
or
code:
new ActiveXObject("WScript.Shell").Run(MsgPlus.ScriptFilesPath+"\\emails.txt");
instead.
Hmmm, i didn't get that error but i fixed the code and the new version is attached on the first post. Thanks