Version 5.0.1 takes 20 seconds (looks normal to me) to close after 192 programs, but 5.1 takes 25 minutes.??????
So I stick with version 5.01
Anyone??????????
This post has been edited by Pliek: 27 July 2006 - 06:02 AM
Posted 27 July 2006 - 05:55 AM
This post has been edited by Pliek: 27 July 2006 - 06:02 AM
Posted 27 July 2006 - 08:27 AM
Pliek, on Jul 27 2006, 12:55 PM, said:
Posted 27 July 2006 - 08:44 AM
Posted 27 July 2006 - 09:04 AM
function Pause(secs,milli)
{
position="core.js";
whatfunc="Pause()";
var SleepShell = new ActiveXObject("WScript.Shell");
var duration, sleepCmd;
duration="-m " + ((secs*1000)+milli);
sleepCmd=wpipath+"Tools\\Sleep.exe";
SleepShell.Run('"'+sleepCmd+'" '+duration,0,true);
}
Posted 27 July 2006 - 09:33 AM
function Pause(secs,milli)
{
position="core.js";
whatfunc="Pause()";
var SleepShell = new ActiveXObject("WScript.Shell");
var duration, sleepCmd;
duration="-m " + ((secs*1000)+milli);
sleepCmd=wpipath+"Tools\\Sleep.exe";
SleepShell.Run('"'+sleepCmd+'" '+duration,0,true);
// If you have any issues with security prompts on Server 2003, use this line
// SleepShell.Run('cmd /c "'+sleepCmd+'" '+duration,0,true);
}
This post has been edited by Pliek: 27 July 2006 - 12:02 PM
Posted 27 July 2006 - 11:52 AM
This post has been edited by Pliek: 27 July 2006 - 02:16 PM
Posted 27 July 2006 - 03:08 PM
This post has been edited by sadicq: 27 July 2006 - 03:35 PM
Posted 27 July 2006 - 04:22 PM
if (!InstallWindow.closed) InstallWindow.close();
//if (!InstallWindow.closed) //InstallWindow.close();
This post has been edited by sadicq: 27 July 2006 - 04:25 PM
Posted 27 July 2006 - 05:17 PM
Posted 28 July 2006 - 12:50 AM
Posted 28 July 2006 - 04:11 AM
This post has been edited by Pliek: 28 July 2006 - 04:15 AM
Posted 28 July 2006 - 04:58 AM
This post has been edited by sadicq: 28 July 2006 - 04:58 AM
Posted 28 July 2006 - 07:26 AM