How to set interval in OLE to monthly and weekly? It seems that setting interval to 2592000 only to make the interval 30D but not monthly. I try Interval=inMonthly but it seems not work on js. I try googling it but no luck so far.
AB = new ActiveXObject( "Broker.Application" ); // creates AmiBroker object
try
{
AB.ActiveDocument.Interval=2592000;
AW = AB.ActiveWindow;
}
catch ( err )
{
WScript.echo( "Exception: " + err.message ); // display error that may occur
}