quote:
Originally posted by Ezra
What is the error code that you get?
And what code do you use exactly?
1. Back to good old 7.5, so I can't check the error number.
2. The code is/are:
code:
function ReadRegistry(key)
{
var Shell = new ActiveXObject("WScript.Shell");
return Shell.RegRead(MsgPlus.ScriptRegPath + key);
}
code:
function ReadRegistry(key)
{
var Shell = new ActiveXObject("WScript.Shell");
var value = Shell.RegRead(MsgPlus.ScriptRegPath + key);
return value;
}
Both gives the same error if I remember correctly.