+ Reply to Thread
Results 1 to 2 of 2

Screen flashing why?

  1. #1
    Chet
    Guest

    Screen flashing why?

    I have a few "drawing boxes" added to a workbook and now the screen
    flashes for about 20-30 seconds before settling down. I do have some
    macros in the macro modules but they are not being run at all while the
    screen is flashing. The flashing seems to stop after 20-30 seconds or
    so.

    Thanks,
    Chet


  2. #2
    Dave Peterson
    Guest

    Re: Screen flashing why?

    Maybe your event code is causing other events (or the same event) to fire over
    and over and over -- until excel gets tired.

    You may want to add:

    application.enableevents = false
    'your code that does something that causes another event to fire
    application.enableevents = true


    ===

    This may hide the flickering, but doesn't really fix the problem:
    application.screenupdating = false
    'your code
    application.screenupdating = true



    Chet wrote:
    >
    > I have a few "drawing boxes" added to a workbook and now the screen
    > flashes for about 20-30 seconds before settling down. I do have some
    > macros in the macro modules but they are not being run at all while the
    > screen is flashing. The flashing seems to stop after 20-30 seconds or
    > so.
    >
    > Thanks,
    > Chet


    --

    Dave Peterson

+ 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