Command: ole.GetQuerys;
Syntax: ole.GetQuerys;
Return: string
Use this command to get a list of all query windows. The querys are separated by comma.
Example:
//get the list of all opened query window and close them
var list=ole.GetQuerys;
var query=list.split(",");
for(i=0;i<query.length;i++)
{
ole.Close(query[i]);
}