Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 538633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:03:08+00:00 2026-05-13T10:03:08+00:00

How to get all the functions you have in a code file in Visual

  • 0

How to get all the functions you have in a code file in Visual Studio using VS macros?
I`m using Visual Studio 2008.

Also I need to get whether function is private protected or public. For now I know I can just parse the code and check it on my own, but I want to make it in a proper way and think vs macros environment should allow know all info about functions.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T10:03:09+00:00Added an answer on May 13, 2026 at 10:03 am

    See HOWTO: Navigate the code elements of a file from a Visual Studio .NET macro or add-in
    An maybe HOWTO: Navigate the files of a solution from a Visual Studio .NET macro or add-in would be interesting for you.

    Getting function accessibility is easy. Following the first article, you have CodeElement object. If it is of type CodeFunction, you can cast it to CodeFunction (or also to CodeFunction2) type. The CodeFunction contains many properties including Access which is what you need. I have modified ShowCodeElement from this article so it only shows functions and also displays their accessibility:

    Private Sub ShowCodeElement(ByVal objCodeElement As CodeElement)
    
        Dim objCodeNamespace As EnvDTE.CodeNamespace
        Dim objCodeType As EnvDTE.CodeType
        Dim objCodeFunction As EnvDTE.CodeFunction
    
        If TypeOf objCodeElement Is EnvDTE.CodeNamespace Then
    
            objCodeNamespace = CType(objCodeElement, EnvDTE.CodeNamespace)
            ShowCodeElements(objCodeNamespace.Members)
    
        ElseIf TypeOf objCodeElement Is EnvDTE.CodeType Then
    
            objCodeType = CType(objCodeElement, EnvDTE.CodeType)
            ShowCodeElements(objCodeType.Members)
    
        ElseIf TypeOf objCodeElement Is EnvDTE.CodeFunction Then
    
            Try
                Dim msg As String = objCodeElement.FullName & vbCrLf
                Dim cd As EnvDTE.CodeFunction = DirectCast(objCodeElement, CodeFunction)
                Select Case cd.Access
                    Case vsCMAccess.vsCMAccessDefault
                        msg &= "Not explicitly specified. It is Public in VB and private in C#."
                    Case Else
                        msg &= cd.Access.ToString
                End Select
                MsgBox(msg)
            Catch ex As System.Exception
                ' Ignore
            End Try
        End If
    
    End Sub
    

    Change it and execute ShowFileCodeModel macro then.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 260k
  • Answers 260k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer In your connection string you say Excel 8.0;HDR=Yes Which means… May 13, 2026 at 11:29 am
  • Editorial Team
    Editorial Team added an answer I answered a very similar question specific to MySQL a… May 13, 2026 at 11:29 am
  • Editorial Team
    Editorial Team added an answer It is the Alternative syntax for control structures. Quoting that… May 13, 2026 at 11:29 am

Related Questions

When I paste this code into a REPL, it works fine: (use 'clojure.contrib.seq-utils) (defn-
I have a repository class that defines some basic Get/Save/Delete methods. Inside these, I
At the company I work for, I have created a Error Logging class to
I am trying to get the Membership Provider to work. So far I have:
I have a Windows Service developed in C# and .NET 3.5 to perform various

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.