Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Excel 2003 (8316.8221) screen corruption

Hi

Excel 2003 (11.8316.8221) SP3 on Windows XP

When the Excel starts it activates the first sheet in the workbook but shows
portions of the second and third sheet "bleeding" into the first sheet. This
is easily worked around by say minimising and maximising the workbook or
causing it to repaint in some other way. After the repaint the first sheet
shows correctly in full.

a) Has an update to Excel been issued which fixes this problem?
b) Can you think of a good workaround (given the details below)?

The workbook is a VBA application which has worked well for a number of
years. It has broken as described above since an update to Excel in
mid-October. The broken build is 11.8316.8221 SP3.

In the workbook open event a number of sheets are unprotected and then
protected (for drawing objects and scenarios). If this functionality is
commented out then the problem goes away. This behaviour looks shoddy and is
difficult to explain to the application's customers.

Thanks for your help.




  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Excel 2003 (8316.8221) screen corruption

Sounds like you have been impacted by the recent KB973475 patch for Excel
2003 of 09-Nov-2009.

Try disabling ScreenUpdating at the start of your code and reset when done
Application.ScreenUpdating = False ' True

Could you report back if this has helped or not.

MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it won't be too long before the update is updated.

Regards,
Peter T


"CSSLevel2" wrote in message
...
Hi

Excel 2003 (11.8316.8221) SP3 on Windows XP

When the Excel starts it activates the first sheet in the workbook but
shows
portions of the second and third sheet "bleeding" into the first sheet.
This
is easily worked around by say minimising and maximising the workbook or
causing it to repaint in some other way. After the repaint the first
sheet
shows correctly in full.

a) Has an update to Excel been issued which fixes this problem?
b) Can you think of a good workaround (given the details below)?

The workbook is a VBA application which has worked well for a number of
years. It has broken as described above since an update to Excel in
mid-October. The broken build is 11.8316.8221 SP3.

In the workbook open event a number of sheets are unprotected and then
protected (for drawing objects and scenarios). If this functionality is
commented out then the problem goes away. This behaviour looks shoddy and
is
difficult to explain to the application's customers.

Thanks for your help.






  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Excel 2003 (8316.8221) screen corruption

On Dec 8, 2:54*pm, "Peter T" <peter_t@discussions wrote:
Sounds like you have been impacted by the recent KB973475 patch for Excel
2003 of 09-Nov-2009.

Try disabling ScreenUpdating at the start of your code and reset when done
Application.ScreenUpdating = False ' True

Could you report back if this has helped or not.

MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it won't be too long before the update is updated.

Regards,
Peter T

"CSSLevel2" wrote in message

...



Hi


Excel 2003 (11.8316.8221) SP3 on Windows XP


When the Excel starts it activates the first sheet in the workbook but
shows
portions of the second and third sheet "bleeding" into the first sheet.
This
is easily worked around by say minimising and maximising the workbook or
causing it to repaint in some other way. *After the repaint the first
sheet
shows correctly in full.


a) Has an update to Excel been issued which fixes this problem?
b) Can you think of a good workaround (given the details below)?


The workbook is a VBA application which has worked well for a number of
years. *It has broken as described above since an update to Excel in
mid-October. *The broken build is 11.8316.8221 SP3.


In the workbook open event a number of sheets are unprotected and then
protected (for drawing objects and scenarios). *If this functionality is
commented out then the problem goes away. *This behaviour looks shoddy and
is
difficult to explain to the application's customers.


Thanks for your help.- Hide quoted text -


- Show quoted text -


Thanks Peter. I did try suppressing the screen update but it did not
help. I was thinking of covering the workbook with a transparent
window or maybe minimising and maximising the workbook programatically
but I may wait to see if there is a fix on its way.

Is there any way to report the bug to Microsoft in the hope that it
gets fixed?

I'll post if I find a solution.

Mike
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Excel 2003 (8316.8221) screen corruption


"Michael May" wrote in message
...
On Dec 8, 2:54 pm, "Peter T" <peter_t@discussions wrote:
Sounds like you have been impacted by the recent KB973475 patch for Excel
2003 of 09-Nov-2009.

Try disabling ScreenUpdating at the start of your code and reset when done
Application.ScreenUpdating = False ' True

Could you report back if this has helped or not.

MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it won't be too long before the update is updated.

Regards,
Peter T

"CSSLevel2" wrote in message

...



Hi


Excel 2003 (11.8316.8221) SP3 on Windows XP


When the Excel starts it activates the first sheet in the workbook but
shows
portions of the second and third sheet "bleeding" into the first sheet.
This
is easily worked around by say minimising and maximising the workbook or
causing it to repaint in some other way. After the repaint the first
sheet
shows correctly in full.


a) Has an update to Excel been issued which fixes this problem?
b) Can you think of a good workaround (given the details below)?


The workbook is a VBA application which has worked well for a number of
years. It has broken as described above since an update to Excel in
mid-October. The broken build is 11.8316.8221 SP3.


In the workbook open event a number of sheets are unprotected and then
protected (for drawing objects and scenarios). If this functionality is
commented out then the problem goes away. This behaviour looks shoddy
and
is
difficult to explain to the application's customers.


Thanks for your help.- Hide quoted text -


- Show quoted text -


Thanks Peter. I did try suppressing the screen update but it did not
help. I was thinking of covering the workbook with a transparent
window or maybe minimising and maximising the workbook programatically
but I may wait to see if there is a fix on its way.

Is there any way to report the bug to Microsoft in the hope that it
gets fixed?

I'll post if I find a solution.

Mike
================================

As I mentioned before MS are aware of the issues, but if you have a support
contract with MS do get in contact as it's helpful in making them aware of
the impact.

Strange that workaround didn't work, particularly after doing
Application.ScreenUpdating = True

Another thing to try, when done
Dim wn As Window
' code
' all done
Set wn = ActiveWindow
Application.ScreenUpdating = False
wn.WindowState = xlMinimized
wn.WindowState = xlMaximized
Application.ScreenUpdating = True


If that doesn't work, enable screenupdating just before toggling the window.
Again please advise - looking for temporary workarounds!

And if that doesn't work could you give more details of what you are doing.

Regards,
Peter T



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Excel 2003 (8316.8221) screen corruption

On 8 Dec, 17:17, "Peter T" <peter_t@discussions wrote:
"Michael May" wrote in message

...
On Dec 8, 2:54 pm, "Peter T" <peter_t@discussions wrote:





Sounds like you have been impacted by the recent KB973475 patch for Excel
2003 of 09-Nov-2009.


Try disabling ScreenUpdating at the start of your code and reset when done
Application.ScreenUpdating = False ' True


Could you report back if this has helped or not.


MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it won't be too long before the update is updated.


Regards,
Peter T


"CSSLevel2" wrote in message


...


Hi


Excel 2003 (11.8316.8221) SP3 on Windows XP


When the Excel starts it activates the first sheet in the workbook but
shows
portions of the second and third sheet "bleeding" into the first sheet.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Excel 2003 (8316.8221) screen corruption


"Michael May" wrote in message
...
On 8 Dec, 17:17, "Peter T" <peter_t@discussions wrote:
"Michael May" wrote in message

...
On Dec 8, 2:54 pm, "Peter T" <peter_t@discussions wrote:


Sounds like you have been impacted by the recent KB973475 patch for
Excel
2003 of 09-Nov-2009.


Try disabling ScreenUpdating at the start of your code and reset when
done
Application.ScreenUpdating = False ' True


Could you report back if this has helped or not.


MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it won't be too long before the update is updated.


Regards,
Peter T


"CSSLevel2" wrote in message


...


Hi


Excel 2003 (11.8316.8221) SP3 on Windows XP


When the Excel starts it activates the first sheet in the workbook but
shows
portions of the second and third sheet "bleeding" into the first
sheet.
This
is easily worked around by say minimising and maximising the workbook
or
causing it to repaint in some other way. After the repaint the first
sheet
shows correctly in full.


a) Has an update to Excel been issued which fixes this problem?
b) Can you think of a good workaround (given the details below)?


The workbook is a VBA application which has worked well for a number
of
years. It has broken as described above since an update to Excel in
mid-October. The broken build is 11.8316.8221 SP3.


In the workbook open event a number of sheets are unprotected and then
protected (for drawing objects and scenarios). If this functionality
is
commented out then the problem goes away. This behaviour looks shoddy
and
is
difficult to explain to the application's customers.


Thanks for your help.- Hide quoted text -


- Show quoted text -


Thanks Peter. I did try suppressing the screen update but it did not
help. I was thinking of covering the workbook with a transparent
window or maybe minimising and maximising the workbook programatically
but I may wait to see if there is a fix on its way.

Is there any way to report the bug to Microsoft in the hope that it
gets fixed?

I'll post if I find a solution.

Mike
================================

As I mentioned before MS are aware of the issues, but if you have a
support
contract with MS do get in contact as it's helpful in making them aware of
the impact.

Strange that workaround didn't work, particularly after doing
Application.ScreenUpdating = True

Another thing to try, when done
Dim wn As Window
' code
' all done
Set wn = ActiveWindow
Application.ScreenUpdating = False
wn.WindowState = xlMinimized
wn.WindowState = xlMaximized
Application.ScreenUpdating = True

If that doesn't work, enable screenupdating just before toggling the
window.
Again please advise - looking for temporary workarounds!

And if that doesn't work could you give more details of what you are
doing.

Regards,
Peter T- Hide quoted text -

- Show quoted text -


Thanks Peter. If I run that code (minimise-maximise) in the
Workbook_Open procedure, the corrupted screen problem still occurs.
However if I kick off a timer event in the Workbook_Open procedure and
then execute the the code in the event handler then the screen is
drawn properly. I am using a timeout of 2000 milliseconds but I don't
suppose the timeout period matters.

Thanks for your help.

==============================================

Interesting, thanks for the feedback.

Could you briefly describe what the code does, and if it includes either
re-enabling screenupdating or redrawing Excel with min/restore when done to
fix.

Regards,
Peter T


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Excel 2003 (8316.8221) screen corruption

On Dec 9, 5:11*pm, "Peter T" <peter_t@discussions wrote:
"Michael May" wrote in message

...
On 8 Dec, 17:17, "Peter T" <peter_t@discussions wrote:





"Michael May" wrote in message


...
On Dec 8, 2:54 pm, "Peter T" <peter_t@discussions wrote:


Sounds like you have been impacted by the recent KB973475 patch for
Excel
2003 of 09-Nov-2009.


Try disabling ScreenUpdating at the start of your code and reset when
done
Application.ScreenUpdating = False ' True


Could you report back if this has helped or not.


MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it won't be too long before the update is updated.


Regards,
Peter T


"CSSLevel2" wrote in message


...


Hi


Excel 2003 (11.8316.8221) SP3 on Windows XP


When the Excel starts it activates the first sheet in the workbook but
shows
portions of the second and third sheet "bleeding" into the first
sheet.
This
is easily worked around by say minimising and maximising the workbook
or
causing it to repaint in some other way. After the repaint the first
sheet
shows correctly in full.


a) Has an update to Excel been issued which fixes this problem?
b) Can you think of a good workaround (given the details below)?


The workbook is a VBA application which has worked well for a number
of
years. It has broken as described above since an update to Excel in
mid-October. The broken build is 11.8316.8221 SP3.


In the workbook open event a number of sheets are unprotected and then
protected (for drawing objects and scenarios). If this functionality
is
commented out then the problem goes away. This behaviour looks shoddy
and
is
difficult to explain to the application's customers.


Thanks for your help.- Hide quoted text -


- Show quoted text -


Thanks Peter. I did try suppressing the screen update but it did not
help. I was thinking of covering the workbook with a transparent
window or maybe minimising and maximising the workbook programatically
but I may wait to see if there is a fix on its way.


Is there any way to report the bug to Microsoft in the hope that it
gets fixed?


I'll post if I find a solution.


Mike
================================


As I mentioned before MS are aware of the issues, but if you have a
support
contract with MS do get in contact as it's helpful in making them aware of
the impact.


Strange that workaround didn't work, particularly after doing
Application.ScreenUpdating = True


Another thing to try, when done
Dim wn As Window
' code
' all done
Set wn = ActiveWindow
Application.ScreenUpdating = False
wn.WindowState = xlMinimized
wn.WindowState = xlMaximized
Application.ScreenUpdating = True


If that doesn't work, enable screenupdating just before toggling the
window.
Again please advise - looking for temporary workarounds!


And if that doesn't work could you give more details of what you are
doing.


Regards,
Peter T- Hide quoted text -


- Show quoted text -


Thanks Peter. *If I run that code (minimise-maximise) in the
Workbook_Open procedure, the corrupted screen problem still occurs.
However if I kick off a timer event in the Workbook_Open procedure and
then execute the the code in the event handler then the screen is
drawn properly. *I am using a timeout of 2000 milliseconds but I don't
suppose the timeout period matters.

Thanks for your help.

==============================================

Interesting, thanks for the feedback.

Could you briefly describe what the code does, and if it includes either
re-enabling screenupdating or redrawing Excel with min/restore when done to
fix.

Regards,
Peter T


I used exactly the code that you proposed, reproduced below. My only
contribution was to execute in a Timer event handler (where the timer
is started at the end of the Workbook_Open procedure.

Dim wn As Window
Set wn = ActiveWindow
Application.ScreenUpdating = False
wn.WindowState = xlMinimized
wn.WindowState = xlMaximized
Application.ScreenUpdating = True

Mike
  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Sounds like you have been impacted by the recent KB973475 patch forExcel2003

Hi Peter,

This is valuable. I was really frustrated with this issue too. Do you have access to any microsoft links that admit to the issue?
It would be valuable to show to my boss.

Thanks,
Sujith



Peter T wrote:

Sounds like you have been impacted by the recent KB973475 patch for Excel2003
08-Dec-09

Sounds like you have been impacted by the recent KB973475 patch for Excel
2003 of 09-Nov-2009.

Try disabling ScreenUpdating at the start of your code and reset when done
Application.ScreenUpdating = False ' True

Could you report back if this has helped or not.

MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it will not be too long before the update is updated.

Regards,
Peter T

Previous Posts In This Thread:

On Tuesday, December 08, 2009 7:38 AM
CSSLevel2 wrote:

Excel 2003 (8316.8221) screen corruption
Hi

Excel 2003 (11.8316.8221) SP3 on Windows XP

When the Excel starts it activates the first sheet in the workbook but shows
portions of the second and third sheet "bleeding" into the first sheet. This
is easily worked around by say minimising and maximising the workbook or
causing it to repaint in some other way. After the repaint the first sheet
shows correctly in full.

a) Has an update to Excel been issued which fixes this problem?
b) Can you think of a good workaround (given the details below)?

The workbook is a VBA application which has worked well for a number of
years. It has broken as described above since an update to Excel in
mid-October. The broken build is 11.8316.8221 SP3.

In the workbook open event a number of sheets are unprotected and then
protected (for drawing objects and scenarios). If this functionality is
commented out then the problem goes away. This behaviour looks shoddy and is
difficult to explain to the application's customers.

Thanks for your help.

On Tuesday, December 08, 2009 9:54 AM
Peter T wrote:

Sounds like you have been impacted by the recent KB973475 patch for Excel2003
Sounds like you have been impacted by the recent KB973475 patch for Excel
2003 of 09-Nov-2009.

Try disabling ScreenUpdating at the start of your code and reset when done
Application.ScreenUpdating = False ' True

Could you report back if this has helped or not.

MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it will not be too long before the update is updated.

Regards,
Peter T

On Tuesday, December 08, 2009 12:17 PM
Peter T wrote:

Thanks Peter. I did try suppressing the screen update but it did nothelp.
Thanks Peter. I did try suppressing the screen update but it did not
help. I was thinking of covering the workbook with a transparent
window or maybe minimising and maximising the workbook programatically
but I may wait to see if there is a fix on its way.

Is there any way to report the bug to Microsoft in the hope that it
gets fixed?

I will post if I find a solution.

Mike
================================

As I mentioned before MS are aware of the issues, but if you have a support
contract with MS do get in contact as it is helpful in making them aware of
the impact.

Strange that workaround did not work, particularly after doing
Application.ScreenUpdating = True

Another thing to try, when done
Dim wn As Window
' code
' all done
Set wn = ActiveWindow
Application.ScreenUpdating = False
wn.WindowState = xlMinimized
wn.WindowState = xlMaximized
Application.ScreenUpdating = True


If that does not work, enable screenupdating just before toggling the window.
Again please advise - looking for temporary workarounds!

And if that does not work could you give more details of what you are doing.

Regards,
Peter T

On Tuesday, December 08, 2009 3:35 PM
Michael May wrote:

erisy andThanks Peter.
e
r
is
y and

Thanks Peter. I did try suppressing the screen update but it did not
help. I was thinking of covering the workbook with a transparent
window or maybe minimising and maximising the workbook programatically
but I may wait to see if there is a fix on its way.

Is there any way to report the bug to Microsoft in the hope that it
gets fixed?

I will post if I find a solution.

Mike

On Wednesday, December 09, 2009 11:11 AM
Peter T wrote:




On Wednesday, December 09, 2009 12:05 PM
Michael May wrote:

elonett.orofnis=3D=3D=3D=3D=3D=3D=3D=3Drtf
el
one
t
t.
  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Sounds like you have been impacted by the recent KB973475 patch for Excel2003

Hello Sujith,

Microsoft released a Hotfix for the buggy KB973475 patch for Excel2003

download
http://support.microsoft.com/hotfix/...908&kbln=en-us

and another Hotfix for the similarly buggy KB973593 for Excel-2007

description
http://support.microsoft.com/default...b;EN-US;978522
download
http://support.microsoft.com/hotfix/...522&kbln=en-us

Regards,
Peter T


<Sujith Kumar wrote in message
...
Hi Peter,

This is valuable. I was really frustrated with this issue too. Do you have
access to any microsoft links that admit to the issue?
It would be valuable to show to my boss.

Thanks,
Sujith



Peter T wrote:


Sounds like you have been impacted by the recent KB973475 patch for Excel
2003 of 09-Nov-2009.

Try disabling ScreenUpdating at the start of your code and reset when done
Application.ScreenUpdating = False ' True

Could you report back if this has helped or not.

MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it will not be too long before the update is updated.

Regards,
Peter T

Previous Posts In This Thread:

On Tuesday, December 08, 2009 7:38 AM
CSSLevel2 wrote:

Excel 2003 (8316.8221) screen corruption
Hi

Excel 2003 (11.8316.8221) SP3 on Windows XP

When the Excel starts it activates the first sheet in the workbook but
shows
portions of the second and third sheet "bleeding" into the first sheet.
This
is easily worked around by say minimising and maximising the workbook or
causing it to repaint in some other way. After the repaint the first
sheet
shows correctly in full.

a) Has an update to Excel been issued which fixes this problem?
b) Can you think of a good workaround (given the details below)?

The workbook is a VBA application which has worked well for a number of
years. It has broken as described above since an update to Excel in
mid-October. The broken build is 11.8316.8221 SP3.

In the workbook open event a number of sheets are unprotected and then
protected (for drawing objects and scenarios). If this functionality is
commented out then the problem goes away. This behaviour looks shoddy and
is
difficult to explain to the application's customers.

Thanks for your help.

On Tuesday, December 08, 2009 9:54 AM
Peter T wrote:

Sounds like you have been impacted by the recent KB973475 patch for
Excel2003
Sounds like you have been impacted by the recent KB973475 patch for Excel
2003 of 09-Nov-2009.

Try disabling ScreenUpdating at the start of your code and reset when done
Application.ScreenUpdating = False ' True

Could you report back if this has helped or not.

MS are aware problems with this patch and also KB973593 for Excel 2007.
Hopefully it will not be too long before the update is updated.

Regards,
Peter T

On Tuesday, December 08, 2009 12:17 PM
Peter T wrote:

Thanks Peter. I did try suppressing the screen update but it did nothelp.
Thanks Peter. I did try suppressing the screen update but it did not
help. I was thinking of covering the workbook with a transparent
window or maybe minimising and maximising the workbook programatically
but I may wait to see if there is a fix on its way.

Is there any way to report the bug to Microsoft in the hope that it
gets fixed?

I will post if I find a solution.

Mike
================================

As I mentioned before MS are aware of the issues, but if you have a
support
contract with MS do get in contact as it is helpful in making them aware
of
the impact.

Strange that workaround did not work, particularly after doing
Application.ScreenUpdating = True

Another thing to try, when done
Dim wn As Window
' code
' all done
Set wn = ActiveWindow
Application.ScreenUpdating = False
wn.WindowState = xlMinimized
wn.WindowState = xlMaximized
Application.ScreenUpdating = True


If that does not work, enable screenupdating just before toggling the
window.
Again please advise - looking for temporary workarounds!

And if that does not work could you give more details of what you are
doing.

Regards,
Peter T

On Tuesday, December 08, 2009 3:35 PM
Michael May wrote:

erisy andThanks Peter.
e
r
is
y and

Thanks Peter. I did try suppressing the screen update but it did not
help. I was thinking of covering the workbook with a transparent
window or maybe minimising and maximising the workbook programatically
but I may wait to see if there is a fix on its way.

Is there any way to report the bug to Microsoft in the hope that it
gets fixed?

I will post if I find a solution.

Mike

On Wednesday, December 09, 2009 11:11 AM
Peter T wrote:




On Wednesday, December 09, 2009 12:05 PM
Michael May wrote:

elonett.orofnis=3D=3D=3D=3D=3D=3D=3D=3Drtf
el
one
t
t.
or
of
n
is
=3D=3D=3D=3D=3D=3D=3D=3D
rt
f

On Thursday, December 10, 2009 2:21 AM
Michael May wrote:

7.butoktrhenydy=3D=3D=3D=3D=3D=3D=3D=3D=3Dof
7.
but
ok
t
r
hen
y
dy
=3D=3D=3D=3D=3D=3D=3D=3D=3D
of


Submitted via EggHeadCafe - Software Developer Portal of Choice
Join Lists with LINQ - SharePoint 2010
http://www.eggheadcafe.com/tutorials...-linq--sh.aspx



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
excel 2003 (11.8307.8221) SP3 - custom cell formatting question Bob Excel Worksheet Functions 2 January 15th 10 09:11 PM
Excel 2003 rdp screen resolution Stefan Triep Excel Discussion (Misc queries) 0 October 15th 07 12:45 PM
Screen corruption and more Charlie Excel Discussion (Misc queries) 1 October 17th 06 06:02 PM
Excel 2003 split screen Chip Smith Excel Discussion (Misc queries) 0 August 4th 06 12:21 AM
Excel 2003 Screen View Gene Mills Excel Programming 1 February 9th 06 02:09 PM


All times are GMT +1. The time now is 02:25 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"