+ Reply to Thread
Results 1 to 3 of 3

Application.screenupdating

Hybrid View

  1. #1
    Registered User
    Join Date
    08-18-2008
    Location
    Los Angeles
    Posts
    44

    Application.screenupdating

    I am working on BPC and have issue with the Flickering screen. This is basically the code that i have, The Application.screenupdating is being over ridden from a a BPC COde that I don't have any control over which is the "MNU_ETOOLS_EXPANDANDREFRESH", Is there another command that I can use to control the Screen Updation?.

    Thank you very much in advanec for any help on this.

     Application.ScreenUpdating = False      
    
     Application.Run "MNU_ETOOLS_EXPANDANDREFRESH"
    
     Application.ScreenUpdating = True
    Last edited by teachMeExcel; 03-28-2012 at 04:05 PM.

  2. #2
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,885

    Re: Application.screenupdating

    The only thing I can think of would be to hide the entire Excel app while the code is running, then unhide it at the end. I would be careful with this, though, since if an error occurs in the external program it will not make Excel visible again. You could fix it, of course, but other users may have no idea what happened.
    Application.Visible = False
    
    Application.Run "MNU_ETOOLS_EXPANDANDREFRESH"
    
    Application.Visible = True

  3. #3
    Registered User
    Join Date
    08-18-2008
    Location
    Los Angeles
    Posts
    44

    Re: Application.screenupdating

    Thank you very much Paul for that sugesstion. I have given that a try already before but I can't use it since the the maodule in question brings out a pop up box that the user needs to answer thereby hiding the excel apps will not work. But I truly appreciate the suggestion.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1