+ Reply to Thread
Results 1 to 5 of 5

Excel 2003 vba get picture as input

Hybrid View

  1. #1
    Forum Contributor unley's Avatar
    Join Date
    11-27-2008
    Location
    South Australia
    MS-Off Ver
    MS Office 2007
    Posts
    253

    Re: Excel 2003 vba get picture as input

    Well, I'm not an expert in VBA but you should do some search in this site 'cause this site's the best to find answers.

    Answer for question 1.
    You can create buttons to open all comments to see if any comments have image and another button to close all comments

    Create a button, insert new module in VBA windows and assign this macro to the button
    Sub ShowSheetComments()
    'shows all comments on the active sheet
    Dim c As Comment
    
    For Each c In ActiveSheet.Comments
      c.Visible = True
      c.Shape.Fill.ForeColor.SchemeColor = 5
      
    Next
    
    End Sub
    Assign this macro to second button to close all comments
    Sub CloseSheetComments()
    'shows all comments on the active sheet
    Dim c As Comment
    
    For Each c In ActiveSheet.Comments
      c.Visible = False
    Next
    
    End Sub

    Answer to question 3.

    check this site
    http://www.mrexcel.com/forum/showthread.php?t=257081
    Cheers mate
    I'm using MS Office 2013

  2. #2
    Forum Contributor
    Join Date
    08-19-2010
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    151

    Re: Excel 2003 vba get picture as input

    Hello,

    Thank you very much for your help and support.
    I will try to use it in my application.

    Thank you for the useful advice

+ 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