Results 1 to 3 of 3

Show All Comments for 10 Seconds

Threaded View

  1. #1
    Registered User
    Join Date
    06-29-2008
    Location
    Perth, Australia
    MS-Off Ver
    MS Office 2003
    Posts
    87

    Show All Comments for 10 Seconds


    I want to show all comments on my spreadsheet for 10 seconds upon opening the workbook. Then I want all the comments to hide. I am not a programmer. I am using the following code under workbook and not in a separate module:
    Option Explicit
    Private Sub Workbook_Open()
    Dim c As Comment
    For Each c In ActiveSheet.Comments
      c.Visible = True
    Next
    Application.Wait Now + TimeValue("00:00:10")
    For Each c In ActiveSheet.Comments
      c.Visible = False
    Next
    End Sub
    Needless to say it doesn't work.

    Can someone put me straight please. I am attaching my file with this post.

    Thanks in advance.
    Attached Files Attached Files
    Last edited by BazzaBoy; 09-24-2010 at 08:59 PM.

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