Consulting

Results 1 to 5 of 5

Thread: List of all Application. methods

  1. #1
    VBAX Tutor
    Joined
    Mar 2010
    Posts
    287
    Location

    Question List of all Application. methods

    Finally completed my first full end to end VBA project. Now feel much more confident (having been a hardcore formula only user).

    I would like to get together a list of all VBA methods available that use the Application. handle. I can call WorksheetFunction. - but there are several other within the Application. handle that I would like to be able to explore/use...

    Any help appreciated, thanks

  2. #2
    Knowledge Base Approver VBAX Wizard
    Joined
    Apr 2012
    Posts
    5,645
    You can find them in the VBEditor F2 (The object browser).

  3. #3
    VBAX Guru Kenneth Hobs's Avatar
    Joined
    Nov 2005
    Location
    Tecumseh, OK
    Posts
    4,956
    Location
    To find all the members of the Excel Application class, press F2 in the VBE, select the Excel library, and then type Application in the next box and click Search.

    Another method is explore the Excel Object model at msdn. For the Application members: http://msdn.microsoft.com/en-us/library/ff198091.aspx

  4. #4
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    My guess is that he is referring to worksheet functions called in VBA via Application., the ones not supported by WorksheetFunction, not the VBA methods associated with Application. I am sure I have come across some before but I cannot think which as I rarely use WorksheetFunction, and I can't think where you get a list of those.

    @Theta, if I am reading it correctly, why do you want to know? Just use Application always as I do.
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  5. #5
    Knowledge Base Approver VBAX Wizard
    Joined
    Apr 2012
    Posts
    5,645
    You will find a list of worksheetfunctions in the object browser (F2 in the VBEditor)

Posting Permissions

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