ScreenUpdating=False fails to prevent screen updating, and causes bizarre behaviour

I have recently installed Office 2013 (MSO Standard 2013) on my (Win 7 Professional) computer.  During a brief transitional period, Office 2003 will remain on my computer.
I had been looking forward to running the many Excel VBA applications on Excel 2013, but am not only disappointed, but alarmed.  We are significantly dependent on over 50 business applications running in Excel VBA (many of which are complex,
and many of which I have developed), but we now find that seemingly one difference alone (though we may yet discover more) is rendering many of them virtually unusable.  That difference is the behaviour of the Application.ScreenUpdating method.
In Excel 2003, the ScreenUpdating method behaved intuitively, predictably and reliably.  It basically does what it says - all screen updating, except for the status bar, is frozen.  To allow users to peek at any updates, one would simply
set ScreenUpdating=True and at the appropriate point freeze updating with ScreenUpdating=False.  Now, in Excel 2013, we are instead finding behaviour which has to be described as bizarre, counterintuitive and destructive.  Essentially, what is happening
is that whenever another worksheet is activated, ScreenUpdating=False does not prevent screen updating - and for good measure, there are a number of other unpleasant side-effects.  I have spent many long hours searching through hundreds of forum posts
and testing workarounds - all without success.  I have seen many posts complaining about ScreenUpdating in Excel 2013, but not a single implementable solution.  Yes, I've seen the advice about replacing Select or Activate methods with objects, but
this workaround would not only be extremely costly and impractical in our case (it would require reworking tens of thousands of lines of code and would probably take many person months of unjustifiable work), it almost certainly wouldn't work.  (You'll
have to take my word on that.)  And all because ScreenUpdating=False doesn't really prevent screen updating any more!  I cannot accept that ScreenUpdating is working properly in Excel 2013, nor that its functionality is in any way acceptable.
The problems are best illustrated with a simple example.  I created this example to verify that the flickering was unrelated to the complexity of the business applications I referred to above.  In this example, there is a "master"
workbook named "ScreenUpdatingTest.xls".  This contains a single button on its only worksheet, and this button executes macro "TestScreenUpdating".  This macro turns screen updating off, then sequentially opens workbook AAA.xls,
workbook BBB.xls and workbook CCC.xls with a 3 second interval between each workbook being opened.  After 3 more seconds, it activates workbook ScreenUpdatingTest.xls and then turns screen updating on.  Along the way, it reports these actions in
the status bar.  One would expect that this would result in AAA, BBB and CCC being opened in the background, with the user seeing no changes on the screen apart from the status bar and the workbooks appearing in the task bar.  This is precisely what
happens in Excel 2003.
By contrast, Excel 2013 seems to do absolutely nothing for about 12 seconds (even the task bar and the status bar remains unchanged), then, AAA, BBB and CCC can be seen to open (in maximized windows) in rapid succession.  The only message I see in the
status bar is the last one, "Switched back to ScreenUpdatingTest.xls."  Even more bizarrely, that there is a call to Msgbox "Hi" just before the Application.ScreenUpdating=True at the end of the subroutine - and this should be unrelated
to which workbook the focus end up with, right?  Wrong!  If Msgbox "Hi" is commented out, the focus ends up with CCC.xls - in other words, Workbooks(ThisWorkbook.Name).Activate seems to be ignored.  But if Msgbox "Hi" is
uncommented, the focus ends up with ScreenUpdatingTest.xls!  This is crazy, isn't it?
Sub TestScreenUpdating()
Application.ScreenUpdating = False
Application.Wait Now() + TimeValue("00:00:03")
Workbooks.Open ThisWorkbook.Path & "\AAA.xls"
Windows("AAA.xls").Activate
Application.StatusBar = "AAA.xls has been opened."
'Excel 2003:
' I see workbook ScreenUpdatingTest.xls on the screen with no flickering.
' AAA.xls is open in the task bar.
' The message that AAA.xls has been opened appears in the status bar.
'Excel 2013:
' I see workbook ScreenUpdatingTest.xls on the screen with no flickering.
' AAA.xls is >>>NOT<<< open in the task bar
' >>>NO<<< message that AAA.xls has been opened appears in the status bar.
Application.Wait Now() + TimeValue("00:00:03")
Workbooks.Open ThisWorkbook.Path & "\BBB.xls"
Windows("BBB.xls").Activate
Application.StatusBar = "BBB.xls has been opened."
'Excel 2003:
' I see workbook ScreenUpdatingTest.xls on the screen with no flickering.
' AAA.xls and BBB.xls are open in the task bar.
' The message that BBB.xls has been opened appears in the status bar.
'Excel 2013:
' I see workbook ScreenUpdatingTest.xls on the screen with no flickering.
' AAA.xls and BBB.xls are >>>NOT<<< open in the task bar.
' >>>NO<<< message that BBB.xls has been opened appears in the status bar.
Application.Wait Now() + TimeValue("00:00:03")
Workbooks.Open ThisWorkbook.Path & "\CCC.xls"
Windows("CCC.xls").Activate
Application.StatusBar = "CCC.xls has been opened."
'Excel 2003:
' I see workbook ScreenUpdatingTest.xls on the screen with no flickering.
' AAA.xls, BBB.xls and CCC.xls are open in the task bar.
' The message that CCC.xls has been opened appears in the status bar.
'Excel 2013:
' I see workbook ScreenUpdatingTest.xls on the screen with no flickering.
' AAA.xls, BBB.xls and CCC.xls are >>>NOT<<< open in the task bar.
' >>>NO<<< message that CCC.xls has been opened appears in the status bar.
Application.Wait Now() + TimeValue("00:00:03")
Workbooks(ThisWorkbook.Name).Activate
Application.StatusBar = "Switched back to ScreenUpdatingTest.xls."
MsgBox "Hi"
Application.ScreenUpdating = True
'Excel 2003:
' I see workbook ScreenUpdatingTest.xls on the screen with no flickering.
' AAA.xls, BBB.xls and CCC.xls are open in the task bar.
' The message that we have switched back to ScreenUpdatingTest.xls appears in the status bar.
'Excel 2013:
' Workbooks AAA.xls, BBB.xls and CCC.xls appear in rapid succession.
' When execution ends:
' If Msgbox "Hi" is commented out, the focus is with CCC.xls.
' If Msgbox "Hi" is uncommented, the focus is with ScreenUpdatingTest.xls.
' AAA.xls, BBB.xls and CCC.xls are >>>NOT<<< open in the task bar.
' The message that we have switched back to ScreenUpdatingTest.xls appears in the status bar.
End Sub
Surely it is reasonable to expect that such functionality should remain consistent from one version to the next!  Our applications in Excel 2003 had a professional, elegant user interface, and they behaved predictably, intuitively and robustly. 
With Excel 2013, this is utterly trashed, with flickering, unpredictable behaviour (who knows what will get the focus?) and inefficiency (things are so much slower when the screen updates).  With Office 2003 going out of support, vast numbers of people
in my company will be moving to Excel 2013 as Excel 2003 is decommissioned.  I imagine the same will be happening in many other companies.  We now find ourselves on the cusp of being dealt us a devastating blow due to ONE DYSFUNCTIONAL METHOD, and
we are desperate for a solution.  A solution would either have to restore the former Excel 2003 functionality of ScreenUpdating, or it would have to introduce a new method which really does turn screen updating on or off without exception.
Please, HELP!
-Peter

Thanks for the input, Jim.
I don't think the Single Document Interface is contributing to the problem.  Since installing Office 2013, Excel 2003 has also inherited a Single Document Interface - yet while it behaves like a charm, Excel 2013 behaves ineptly.
Whatever the reasons for the problem, the fact is that this functionality is now broken - one might even say catastrophically broken - and some sort of resolution is essential.  It would be madness to allow something like this to have such a severe
impact on business operations.
My call for help is still out there, as loud as ever!  BTW, I can send my example files, zipped, to anyone who might like to look at them.
Peter
Sydney, Australia

Similar Messages

  • In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page (I turn Shockwave Flash on only to see videos - having it off prevents screen freezing - and so I want it stay at the top of the list)?

    In Firefox 4, how do I change the order of plugins on the Add-ons Plugins manager page? I turn Shockwave Flash on only when I want to watch a video and then turn it off to prevent screen freezing, and so I want it to PUT it and KEEP it at the top of the list.

    Hit Ctrl+0 (That's a zero, by the way). I'm not sure if it will work, but hey, that's the first thing I would try.

  • Fail to launch Software Update and Aperture 2 in 10.5.2

    apparently i was unable to use the software update and aperture 2 installer this evening. everytime i try to open the programs they just flash once and exit automatically.
    would anyone can help me will be highly appreciated. thanks.
    here's the problem details for Software Update in 10.5.2
    Process: Software Update [438]
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Identifier: com.apple.SoftwareUpdate
    Version: ??? (???)
    Build Info: SoftwareUpdate-1780000~3
    Code Type: X86 (Native)
    Parent Process: launchd [116]
    Date/Time: 2008-02-26 21:39:32.977 +1100
    OS Version: Mac OS X 10.5.2 (9C31)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Dyld Error Message:
    Symbol not found: __ZN3KJS11Interpreter10globalExecEv
    Referenced from: /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue
    Expected in: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    and this one for aperture 2 installer.
    Process: Installer [980]
    Path: /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer
    Identifier: com.apple.installer
    Version: ??? (???)
    Build Info: Installer-2780000~2
    Code Type: X86 (Native)
    Parent Process: launchd [116]
    Date/Time: 2008-02-26 21:55:00.048 +1100
    OS Version: Mac OS X 10.5.2 (9C31)
    Report Version: 6
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Dyld Error Message:
    Symbol not found: __ZN3KJS11Interpreter10globalExecEv
    Referenced from: /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue
    Expected in: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore

    Same issue here. Also cannot launch Photoshop CS3 and Quark 7.3.
    I got out my original 10.5 system DVD's that came with my iMac 24", and did Archive & Install of System and All Bundled Applications.
    I then did NOT update the system. I am staying on 10.5
    All is running fine now.
    A buddy did what I did, and he checked the drive Permissions and Repaired drive, (no issues). He then proceeded to do Combo 10.5.2 update. After reboot, applications again would not launch!!
    Thanks, Scott K.

  • Failed 10.4.7 update has caused blue screen at log on

    I tried to download the 10.4.7 update (133MB version) to my 15" MBP and for some reason the download failed. Now I cannot start my MBP- after the Apple screen it just goes to a blank blue screen and stays there. I have looked for advice on the discussions board and tried the following things-
    -starting it in safe mode and deleting the log in items (in both user accounts), that didn't seem to make any difference
    -restoring the firmware as per the advice at http://docs.info.apple.com/article.html?artnum=303469, nothing happened when I followed the instructions, just started up again with that blue screen. Problem with this step is that it only works if you haven't since updated the firmware and I suspect we have since we do most of the updates that come up with Software Update.
    Any other ideas before I take the computer back to the shop?
    MBP, Mac Mini   Mac OS X (10.4.6)   still learning how to use my Mac...

    To solve this, I downloaded the upload using the other computer and put it onto a cd-rom. Then I started the computer in safe mode, then pu the cd in and continued the update. Seemed to work a treat.
    Might help someone else if they get any issues similar to this in future...

  • Preventing Java updating and phonong home ?

    I have been tasked with upgrading an existing working setup of many machines all with XP &  Java 6u45, with new machines running Windows 7 Pro & Java 8. This will be a completely managed setup, which may or may net (depending on deployment) be connected to the Internet and Java versions that are deployed must be fixed and not updated. Currently testing with V8u21.
    I have cracked and got working the fact the some of the Java apps, in this closed environment, are not signed or are self signed, and they work fine under Java 8u21.
    I have been able to suppress IE 11 preventing "out of data active controls" being disabled and thus can install any version of Java without IE 11 blocking it.
    But have not been able to suppress the "java needs updating" dialogue box occurring is say 6 months time.....I moved all the clocks on 6 months, 1 year, 2 years to test this. Java may or may not be updated at a later date, but needs to be fixed at deployment (and any later date system reimaging).
    Is there a way to suppress this dialogue box ? In this closed setup, maybe not being connected to the internet and running with non-administrative privileges, there is no way to the upgrade can occur. Also we are using a "stateless" session, so that any changes, like user selecting "later" will be forgotten next reboot and dialogue box reappears. Not very profession in such a controlled environment.
    I have tried "deployment.expiration.check.enabled=false" & "deployment.expiration.decision.suppression=false" in deployment.properties file and can see these being copied into the registry by Java, but clearly ignored as the dialogue box comes back....
    Any thoughts please, as I don't really want to deploy nice new Windows 7 & IE11 boxes with Java 6u45
    regards
    Ian

    I have been tasked with upgrading an existing working setup of many machines all with XP &  Java 6u45, with new machines running Windows 7 Pro & Java 8. This will be a completely managed setup, which may or may net (depending on deployment) be connected to the Internet and Java versions that are deployed must be fixed and not updated. Currently testing with V8u21.
    I have cracked and got working the fact the some of the Java apps, in this closed environment, are not signed or are self signed, and they work fine under Java 8u21.
    I have been able to suppress IE 11 preventing "out of data active controls" being disabled and thus can install any version of Java without IE 11 blocking it.
    But have not been able to suppress the "java needs updating" dialogue box occurring is say 6 months time.....I moved all the clocks on 6 months, 1 year, 2 years to test this. Java may or may not be updated at a later date, but needs to be fixed at deployment (and any later date system reimaging).
    Is there a way to suppress this dialogue box ? In this closed setup, maybe not being connected to the internet and running with non-administrative privileges, there is no way to the upgrade can occur. Also we are using a "stateless" session, so that any changes, like user selecting "later" will be forgotten next reboot and dialogue box reappears. Not very profession in such a controlled environment.
    I have tried "deployment.expiration.check.enabled=false" & "deployment.expiration.decision.suppression=false" in deployment.properties file and can see these being copied into the registry by Java, but clearly ignored as the dialogue box comes back....
    Any thoughts please, as I don't really want to deploy nice new Windows 7 & IE11 boxes with Java 6u45
    regards
    Ian

  • Screen update and list update issue

    Hi,
    Using one data service , I am display list of manufactuerer(with 3-4 info). When any manufacturere selected, information for that manufactuerer will be displayed and modify using other data service. But some information like changed by and changed need to change in the screen modify insite "SAVE" data service. How screen can be refereshed?
    Other question: I am opening a pop up to create a manufactuerer, but not able to update list after creation. Ho I can update manufactuerer list after a new manufactuerer creation?
    Thanks in advance.
    Regards
    Anutosh

    Hi
    Please can you explain your issue in more detail, I am not sure what the issue is here.
    Thanks

  • KT880 Slow Screen Draw and other problems

    Is there a performance issue with the Kt880 boards that causes it to draw the screen slow, and causes the onboard LAN to fight with the USB controllers?
    Do I need to reduce the FSB of my RAM @333 to the FSB of the 2400+ @266?
    Maybe there are some BIOS tweaks that fix this problem?

    Not sure yet but I think I have sorted out most of the bugs.
    Changing the FSB speeds and removing a stick of ram does nothing, except to reduce the system performance slightly.
    Updated BIOS to latest. No change.
    Repair install after removing Symantec AV 9 Corp, and System Works 2005. helped some.
    Removing the NIC, uninstalling all Networking components then putting it all back really made an improvment.
    Then I turned on the SATA controller and let it install the PCI to IDE bridges and that helped. Removed the VIA CPU to AGP driver and it reinstalled it's self. slight improvment on the screen draw problem.
    Getting the USB to stop messing with the PCI bus was easy. I removed all the PCI cards RESET Bios data, reinstall VIA 4.53, added the PCI cards in one at a time then added on the 2 extra drives. Will change the drives to SATA next week.
    I think the whole problem comes from the install CD I made with NLight. Nlight has an option to remove components, turn off SFP and modify the UXTHEME.dll, and the TCPIP.sys file.
    After work Monday I will try a fresh install of Win XP OEM original on a spare drive, and update it to SP1, then SP2 and see how it goes.
    So far game play is excellent with good frame rates and no crashes. My team mates were complaining of poor frame rates on a custom BF1942 DC Map with frames of under 10FPS where I was at 65 to 100FPS.
    That poor KT600 I had was probably fine

  • My iPhone 4s acts like I need to plug in to iTunes and I got an error message saying it failed to download update and now the screen won't go away. USB port end on phone with arrow pointing to iTunes...

    My iPhone 4s acts like I need to plug in to iTunes and I got an error message saying it failed to download update and now the screen won't go away. USB port end on phone with arrow pointing to iTunes...

    Now iTunes will not recognize my phone as a device...

  • After prompted to update 10.9.1, my MacBook Pro updates and went thru restart but failed...I tried to start my book and gray screen, Apple logo both on, chime sounded, then went to progress bar, less than half macbook shuts down...did few times, same!!

    After prompted to update 10.9.1, my MacBook Pro updates and went thru restart but failed...I tried to start my book and gray screen, Apple logo both on, chime sounded, then went to progress bar, less than half macbook shuts down...did few times, same!!
    Go to system repair, there is a prompt that cannot repair live etc....I don understand!!! Help, I need the book for work tomorrow!!

    Thanks clintonfrombirmingham...
    After clicking "repair disk" it says DISK UTILITY STOPPED REPAIRING MACINTOSH HD, DISK UTILITY CAN't REPAIR THIS DISK. BACK UO AS MANY OF YOUR FILES AS POSSIBLE, REFORMAT THE DISK, AND RESTORE YOUR BACKED -UP FILES....
    written in red: ERROR: DISK UTILITY CAN'T REPAIR THIS DISK,,,DISK, AND RESTORE YOUR BACKED-UP FILES.
    how can I back up when I cannot even start my macbook? I am stuck here and have lots of important files in the hd... Please help me? Thanks you!

  • Started update today when i had a look at ipod later it had connect to itunes pic on screen did this then itunes said it has detected an ipod in recovery mode and to restore it done this it fails because of error 3194 and is currently not responding help!

    started update today when i went back to ipod it had on screen pic of connect to itunes did this itunes detected an ipod in recovery and needed restored did this and error 3194 coming up ipod is currently stuck in recovery mode help!

    3194-How do I reset the hosts file back to the default?
    iPhone Error 3194 - How to Fix iTunes Error 3194?
    Fix Error 3194 from iTunes during iPhone restore
    iTunes: Specific update-and-restore error messages and advanced troubleshooting

  • Ok! so i tried updating my ipad 2 software to I.O.S 6.1 and it failed then continued to shut down and put the plug into itunes logo on my screen! I then i have been trying to update and restore my Ipad 2, then it says corrupt file and stops any advice?

    This is ridiculous!!!!! Apple Corporation needs to fix what ever went wrong with IOS 6.1 update and they better do it soon or theyre going to have a mob on their hands!! i have been continuosly restoring and updating my iPad 2 and it always says corrupt file then restarts the whole process! im going out of my mind and im about to say to **** with it and call apple themselves and make so many complaints that theyll fix it within the hour or i will go to new york city at the head of the corporation and make the most skeptical and most embarrissing seen that they will end up ashamed to even be working for a company with the supposedly "SMARTEST AND BRIGHTEST TECHNOLOGICAL PEOPLE IN THE U.S." who cant even get a software update correct so that it doesnt make some of our lives harder then they need to be! and if its already known to be corrupt then should take it off the whatever update liost and fix it before anyone else has to go what ive gone through, cause its pure torcher!! i paid good money for a product for easy use whenever and thats not what im getting when they cant even make a simple update thats supposed to help but only makes my product worse and make me wanna never buy from them again!

    Hello aZaa4401,
    Thank you for using Apple Support Communities.
    You can use the following article to resolve your issue:
    If you can't update or restore your iPhone, iPad, or iPod touch
    Regards,
    Jeff D. 

  • MacBook Pro screen flickers and freezes after Snow Leopard/Safari 5 updates

    Hi guys,
    I have a silver 120GB 15-inch MacBook Pro from Summer 2007 with 3GB RAM and 25+GB free space which has recently begun to freeze irrecoverably. The first appearance of these symptoms seems to coincide with my installing the Snow Leopard 10.6.6 update via Software Update.
    I'm not particularly well versed in computer technology, but will try to describe my problem as detailedly as possible.
    What happens is this:
    1. I start the computer as per usual, with only a couple of startup items. Everything's fine.
    2. I start working. Use a lot of Safari 5 for browsing websites, often with some kind of Flash or "Flash-type" content such as banner ads, videos, even full Flash designs. I may also have programs such as QuickTime, VLC or an image editor open, if not necessarily "actively" doing anything. Everything's still fine - I'm able to both browse websites and watch videos as usual.
    3. After a while of active working - say, 1-3 hours - I notice browsing websites gets a little choppy. Display features such as the file list view in Finder may or may not appear properly. The rotating wait cursor may or may not appear from time to time.
    4. Immediately after symptom no. 3, the next time I start to watch a video, either via Safari 5 (say for example something on DailyMotion.com) or a file via QuickTime, something goes wrong.
    Following no. 4, one of three things invariably happen:
    5a) The video freezes and the entire screen flickers from black to the screen view very quickly two or three times, after which the computer or screen appears to freeze. The cursor still moves, but nothing reacts to it - open windows become completely unresponsive, nor does the top or any other menu react in any way to clicking. The "menu row" of application items, which normally appears when I move the cursor to the very bottom of the screen, doesn't appear. Restarting "blindly" by pressing the Off-button once and pressing R doesn't work. I'm forced to do a hard reboot, after which the computer is once again fine until the next two hours of active working. This usually happens ONLY when I try to watch a video in Full Screen-mode.
    5b) I notice the video freezing only just in time, and am able to pause it and "esc" out of Full Screen-mode, and the computer remains operational. However, as soon as I again try to play video in Full Screen-mode, everything described in 5a. happens.
    5c) The video stops playing, and the screen reverts momentarily to pale blue before switching to the login screen. I login again with my details, and everything appears to be fine again until the next two hours of active working. The computer "starts up" a lot faster than with a hard reboot. This usually happens ONLY when I've tried to watch a video in its original size, i.e. when not in Full Screen-mode.
    This happens 1-4 times a day, and it appears to depend directly on how much work I've been doing on the computer. The less I use it in the course of a day, the longer it takes until the next time it freezes.
    So, in a way, I'm able to replicate this problem. 95% of the time the screen has frozen while watching or starting to watch (usually already when starting to watch) video footage, but it has also frozen a couple of times just switching between e.g. Safari 5 and an image editor or browsing a website with a Flash banner ad or embedded video content (which however hasn't necessarily been playing); today, the screen froze when I tried to open a website made entirely with Flash.
    Although it could be just a coincidence, I believe this issue first appeared when I updated Snow Leopard to 10.6.6 via Software Update alongside some other pending updates, including as far as I recall one for Safari 5. The update process appeared to have gone well at the time, though, and was not interrupted in any way. I have never had this specific problem with the computer/screen before, though.
    I've read a couple of threads here regarding very similar issues with newer MBP models than mine, in which it has been suggested that the fault may lie in a malfunctioning NVIDIA GeForce graphics card. Now I've had that replaced already once because my screen went unexpectedly completely blank after a forced reboot 1-2 years ago (I don't remember exactly), but according to my System Profiler info the card still a GeForce 8600M GT. Can it be failing again?
    I've also had some kind of a RAM card failure once. As far as I understood it, one of the RAM cards had fried and was preventing the computer from starting up. I replaced the bad 1GB card with a new 2GB one and the problem was resolved. Before the computer died, there were also other symptoms, but they were not similar to these.
    I'm also doing the Apple Hardware Test tomorrow. Any other suggestions, though, than the graphics card?
    *Could this have to do with Flash or Safari 5?* Just hear me out. Even though my computer has frozen from watching a video in just QuickTime, Safari 5 has always been open in the background at the same time, and more likely than not with websites with "Flash" content open. And come to think of it, before I performed the Snow Leopard and Safari 5 updates, I used to have daily problems viewing Flash video in Safari 5, the video content either suddenly showing up as "Plug-in Failure" or crashing the browser; I've had both Safari 5 and the Safari 5 Flash plug-in "quit unexpectedly" countless times in the past, almost daily. Sometimes the "Plug-in Failure" could be fixed just by refreshing the browser view; at other times, Safari 5 would stop showing Flash content altogether - Flash banner ads (such as Google ads), YouTube and other Flash videos, everything - until I quit and restarted Safari 5. BUT - since the day I updated everything via Software Update, I don't remember this happening; it never gets to "Plug-in Failure" now. Could it be worth trying to use e.g. just Firefox for a while or is there something (e.g. Adobe Flash) that I could try reinstall? Or am I just clutching at straws here?
    Thanks for reading this long, long post!

    Do you have access to an Apple Store? If so, it may be worth making an appointment at the genius bar and having them run the test for the NVIDIA problem. Since your replacement logic board still has the NVIDIA GeForce 8600 M GT video chip, it could be starting to happen to your replacement logic board.
    I also agree with all of CMCSK's suggestions. Freezing is often associated with hard drive problems. You might also want to run SMART Utility:
    http://www.apple.com/downloads/macosx/systemdiskutilities/smartutility.html
    You can download the demo and run it several times for free. It will give you a very comprehensive view of the physical health of your hard drive. If you still have the original one from 2007, it's getting pretty long in the tooth and may be approaching the end of its average useful life of 3-5 years. I just recently had to replace my original 2007 Fujitsu drive.
    If your drive is headed south, and is also too small, it may be time to upgrade to a larger and faster drive.
    The software update probably didn't cause the problems, but it may have exposed problems that were already in existence.
    Good luck!

  • ThinkPad Hotkey Features Integration 3.89.0000 On Screen Display and Mute Button Fail

    I am installing updates on a T400 system running WIndows 7 Pro 64-bit.
    The system has been freshly factory restored and all features work properly...
    After running System Restore to update to the latest drivers and recommended software, I find Thinkpad Hotkey Features Integration 3.89.0000 breaks features.
    I am able to use Hotkeys to change brightness up/down, Fn+F5, Fn+F6, etc. The volume up and down keys work to change volume. The mute button does not work at all! There is no On Screen Display to show the adjustment settings for any Hotkeys.
    I have found that installing the older 3.88.0000 (8jvu40ww.exe) version of ThinkPad Hotkey Features Integration works successfully with mute button functionality as well as the On Screen Display features.
    Comparing what is different between the 3.89.0000 and 3.88.0000 versions, I find On Screen Display version and Full Screen Magnifier have advanced. The version information table at the bottom of the software download page is inconsistent compared to what is actually reported from the 3.88.0000 setup.exe:
    Setup shows:
    On Screen Display 6.71.00
    Full Screen Magnifier 2.40
    The table shows:
    On Screen Display 6.72.00
    Full Screen Magnifier 2.41
    The System Interface Driver is 1.05 on all the recent versions.
    With the 3.89.0000 version installed, I cannot uninstall and go back to the older version to get it working. Instead, I have to do a System Restore to a point previous to the newest install... something changes in the new version but I am not yet sure what.
    I have no warranty on this system. Lenovo technical support is unwilling to entertain a conversation about solving this issue with their software unless I purchase a support package. Perhaps someone from Lenovo reads this forum and/or one of the community members has a contact or option so that I may report the issue to those who are responsible for resolving Lenovo software issues. I am hopeful they can solve it in their next release so that I do not have to hide the current version from System Update.
    If anyone has ideas on what causes the latest On Screen Display or Full Screen Magnifier to disable the mute button and prevent On Screen Display from working... I would love to try and solve that problem. Additionally, if you have ideas on what prevents uninstalling and going back to an older version, that would also be helpful as I would not like to rely on System Restore.
    If there is no solution other than to avoid 3.89.0000 it is what I will do and this message will help others so they do not spend hours to confirm the issue is with the 3.89.0000 version rather than suspecting hardware issues.
     trying to figure out the source of the trouble.
    Thank goodness Lenovo offers previous versions in a table at the bottom of the pages so we can try older versions and go back to what works. It is a shame they do not advertise a link or other option to report bugs and issues with Lenovo software/drivers directly.

    This is the roulette you play with updating functions that are already working properly.
    If it's not broken, don't fix it. Do the release notes describe a fix or enhancement that you want? No? Then leave it alone. Hiding updates in Lenovo Update is the easiest solution.  For RChesley, in this case.
    Bob, I realize that you want the function that the update is supposed to deliver, but the update has failed you.  It's like installing version 1.0.0 of software sometimes, with Lenovo Update.  You're never quite sure what you're going to get.  There's tons of posts here that read as though the users are beta testers--installing updates and finding the bugs!  So the developers can go back to the code and try again. 
    I've learned to never be an early adopter here.

  • Last night I did an update and now when I turn on my macbook it just goes to the white screen with the apple and stays like that.

    Last night I did an update and now when I turn on my macbook it just goes to the white screen with the apple and stays like that. How do I fix this issue?

    Take each of these steps that you haven't already tried. Stop when the problem is resolved.
    To restart an unresponsive computer, press and hold the power button for a few seconds until the power shuts off, then release, wait a few more seconds, and press it again briefly.
    Step 1
    The first step in dealing with a startup failure is to secure the data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since the last backup, you can skip this step.
    There are several ways to back up a Mac that is unable to start. You need an external hard drive to hold the backup data.
    a. Start up from the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
    b. If Step 1a fails because of disk errors, and no other Mac is available, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    c. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    d. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    If the startup process stops at a blank gray screen with no Apple logo or spinning "daisy wheel," then the startup volume may be full. If you had previously seen warnings of low disk space, this is almost certainly the case. You might be able to start up in safe mode even though you can't start up normally. Otherwise, start up from an external drive, or else use the technique in Step 1b, 1c, or 1d to mount the internal drive and delete some files. According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation.
    Step 3
    Sometimes a startup failure can be resolved by resetting the NVRAM.
    Step 4
    If a desktop Mac hangs at a plain gray screen with a movable cursor, the keyboard may not be recognized. Press and hold the button on the side of an Apple wireless keyboard to make it discoverable. If need be, replace or recharge the batteries. If you're using a USB keyboard connected to a hub, connect it to a built-in port.
    Step 5
    If there's a built-in optical drive, a disc may be stuck in it. Follow these instructions to eject it.
    Step 6
    Press and hold the power button until the power shuts off. Disconnect all wired peripherals except those needed to start up, and remove all aftermarket expansion cards. Use a different keyboard and/or mouse, if those devices are wired. If you can start up now, one of the devices you disconnected, or a combination of them, is causing the problem. Finding out which one is a process of elimination.
    Step 7
    If you've started from an external storage device, make sure that the internal startup volume is selected in the Startup Disk pane of System Preferences.
    Start up in safe mode. Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to start and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know the login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    When you start up in safe mode, it's normal to see a dark gray progress bar on a light gray background. If the progress bar gets stuck for more than a few minutes, or if the system shuts down automatically while the progress bar is displayed, the startup volume is corrupt and the drive is probably malfunctioning. In that case, go to Step 11. If you ever have another problem with the drive, replace it immediately.
    If you can start and log in in safe mode, empty the Trash, and then open the Finder Info window on the startup volume ("Macintosh HD," unless you gave it a different name.) Check that you have at least 9 GB of available space, as shown in the window. If you don't, copy as many files as necessary to another volume (not another folder on the same volume) and delete the originals. Deletion isn't complete until you empty the Trash again. Do this until the available space is more than 9 GB. Then restart as usual (i.e., not in safe mode.)
    If the startup process hangs again, the problem is likely caused by a third-party system modification that you installed. Post for further instructions.
    Step 8
    Launch Disk Utility in Recovery mode (see Step 1.) Select the startup volume, then run Repair Disk. If any problems are found, repeat until clear. If Disk Utility reports that the volume can't be repaired, the drive has malfunctioned and should be replaced. You might choose to tolerate one such malfunction in the life of the drive. In that case, erase the volume and restore from a backup. If the same thing ever happens again, replace the drive immediately.
    This is one of the rare situations in which you should also run Repair Permissions, ignoring the false warnings it may produce. Look for the line "Permissions repair complete" at the end of the output. Then restart as usual.
    Step 9
    If the startup device is an aftermarket SSD, it may need a firmware update and/or a forced "garbage collection." Instructions for doing this with a Crucial-branded SSD were posted here. Some of those instructions may apply to other brands of SSD, but you should check with the vendor's tech support.  
    Step 10
    Reinstall the OS. If the Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade.
    Step 11
    Do as in Step 9, but this time erase the startup volume in Disk Utility before installing. The system should automatically restart into the Setup Assistant. Follow the prompts to transfer the data from a Time Machine or other backup.
    Step 12
    This step applies only to models that have a logic-board ("PRAM") battery: all Mac Pro's and some others (not current models.) Both desktop and portable Macs used to have such a battery. The logic-board battery, if there is one, is separate from the main battery of a portable. A dead logic-board battery can cause a startup failure. Typically the failure will be preceded by loss of the settings for the startup disk and system clock. See the user manual for replacement instructions. You may have to take the machine to a service provider to have the battery replaced.
    Step 13
    If you get this far, you're probably dealing with a hardware fault. Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.

  • HT5957 I completed the iOS 7.0.2 update and now my screen is locked in the Connect to iTunes position.  I am not near my home computer so I cannot connect to iTunes.  Please let me know if there is a way to recover this without connecting to a computer.

    I completed the iOS 7.0.2 update and now my screen is locked in the Connect to iTunes position.  I am not near my home computer so I cannot connect to iTunes.  Please let me know if there is a way to recover this without connecting to a computer.

    Use iTunes on any computer to restore your iPhone. Your data
    will be gone, but your iPhone will be functioning. You can restore
    when you get home.
    You may wish to look into iCloud to prevent data loss in the future:
    http://support.apple.com/kb/HT4436

Maybe you are looking for

  • HP 3650 deskjet will not print in Windows 7

    New pc w/ Windows 7. My HP deskjet 3650 will not print PDF, Quicken, Website selections, etc. HELP!

  • How PLM documents saved in the Content Server or in the database.

    Hi All, Please tell me the concept about given below scenario: Normally PLM documents are either saved in the Content Server or in the database. What if we have neither configured a database nor a content server. Where are they being stored then. wha

  • Limitations of Express Edition

    Hi, Iam using Oracle Application Express [Express Edition]. Seems this free download has some limitations and is not allowing me to use eigther htmldb_item nor apex_item. Please let me know how to use controls from apex_item package. Ex: htmldb_item.

  • MESSAGE_TYPE_X while running t-code RSPCM

    Recently we have refreshed our BI stage system and after refresh RSPCM t-code throwing the dump MESSAGE_TYPE_X. We have analyzed the ABAP dump and found the OSS note 1381311 to resolve the problem. As per the note the issue is occurring due to transa

  • Maximum VOC Value to be printed on a label

    Hello, I have created a label using CG42 transaction and in that there is a symbol VOC(g/l) which i have inserted. But this is having multiple values. I want to print the maximum value of the VOC in the label. Does anyone have any idea how to do this