Thread: Freeze Panes
View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
Wei-Dong Xu [MSFT] Wei-Dong Xu [MSFT] is offline
external usenet poster
 
Posts: 120
Default Freeze Panes

Hi Rohit,

I have tested your page. After rendering, the page freezePanels are set
successfully. My IE is 6.0.3790.0 (windows 2003 enterprise). What is your
IE version and the OS? Thanks in advance! Please ensure that you have
installed all the latest patches via Windows Update.

For your scenario, I'd suggest you can set one Timer to execute the
SetFrees after 500 millisecond after the rendering, which may be one
workaround.

Change the code below from:
//---------------
var oss = document.all.ss;
SetFrees();

function SetNoFrees()
to
var oss = document.all.ss;
window.setTimeout("SetFrees()", 500);

function SetNoFrees()
//---------------

Look forward to your reply!

Best Regards,
Wei-Dong XU (WD)
Microsoft Product Support Services
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.