+ Reply to Thread
Results 1 to 4 of 4

Disable "Trace Dependents" popup

  1. #1
    Registered User
    Join Date
    09-05-2006
    Posts
    3

    Disable "Trace Dependents" popup

    Is it possible to disable the "Trace Dependents" popup, which alerts me that "The Trace Dependents command found no formulas that refer to the active cell".

    I want a nice beep instead of the rather annoying popup box..


    -thanks

  2. #2
    Valued Forum Contributor
    Join Date
    12-16-2004
    Location
    Canada, Quebec
    Posts
    363
    Hi

    Would this help

    sub auto_open
    Application.DisplayAlerts = False
    Beep
    End Sub

  3. #3
    Registered User
    Join Date
    09-05-2006
    Posts
    3
    Hi,

    Thanks for the input. Sadly, it didn't do the trick..

    Regards,
    -Tracy

  4. #4
    Valued Forum Contributor
    Join Date
    12-16-2004
    Location
    Canada, Quebec
    Posts
    363
    Hi Tracy

    Not sure if this will work, but you can try this
    Private Sub Workbook_Open()
    Application.CommandBars("Worksheet Menu Bar").Controls("Tools").Controls("Auditing").Enabled = False
    End Sub

    Private Sub Workbook_Close()
    Application.CommandBars("Worksheet Menu Bar").Controls("Tools").Controls("Auditing").Enabled = True
    End Sub

+ 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