View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Michal[_2_] Michal[_2_] is offline
external usenet poster
 
Posts: 1
Default Problem with managing excel embedded with IFRAME

That's me again.

Can anyone tell me anything abot my problem please?

What I can add is that Activate() method doesn't work neither. Example:

for (var i=1;i<=objExcel.Workbooks.Count;i++)
{
if (objExcel.Workbooks(i).Name == "1.xls")
{
alert("There it is: " + i + " " + objExcel.Workbooks(i).Name);
objExcel.Workbooks(i).Activate();
}
}

alert(objExcel.ActiveWorkbook.Name); // doesn't get '1.xls' ,
// but somthing else
// or nothing

Thanks for any help in advance
Michal Dabrowski