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 6163389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:49:01+00:00 2026-05-23T21:49:01+00:00

I am trying to (programatically) find references to a specific string i.e. ‘LOCK_ID’ within

  • 0

I am trying to (programatically) find references to a specific string i.e. ‘LOCK_ID’ within a large number of VB6 files. To help people navigate directly to the reference I would also like to retrieve the line number of the match. i.e:

  1. Search all VB6 files for reference
  2. If a reference was found I would like to retrieve the line number on which the reference was located.

Short of opening every file in the directories and iterating through the file and keeping count of which line I am examining for the search term, is there a quicker/easier way of achieving this?

  • 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-23T21:49:02+00:00Added an answer on May 23, 2026 at 9:49 pm

    Here are the functions I used to achieve the desired functionality:

    private void FindReferences( List<string> output, string searchPath, string searchString )
    {
        if ( Directory.Exists( searchPath ) )
        {                                                                
            string[] files = Directory.GetFiles( searchPath, "*.*", SearchOption.AllDirectories );
            string line;
    
            // Loop through all the files in the specified directory & in all sub-directories
            foreach ( string file in files )
            {
                using ( StreamReader reader = new StreamReader( file ) )
                {
                    int lineNumber = 1;
                    while ( ( line = reader.ReadLine() ) != null )
                    {
                        if ( line.Contains( searchString, StringComparison.OrdinalIgnoreCase ) )
                        {
                            output.Add( string.Format( "{0}:{1}", file, lineNumber ) );
                        }
    
                        lineNumber++;
                    }
                }                   
            }
        }
    }
    

    Helper class:

    /// <summary>
    /// Determines whether the source string contains the specified value.
    /// </summary>
    /// <param name="source">The String to search.</param>
    /// <param name="toCheck">The search criteria.</param>
    /// <param name="comparisonOptions">The string comparison options to use.</param>
    /// <returns>
    ///   <c>true</c> if the source contains the specified value; otherwise, <c>false</c>.
    /// </returns>
    public static bool Contains( this string source, string value, StringComparison comparisonOptions )
    {
        return source.IndexOf( value, comparisonOptions ) >= 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to find out programatically the max permgen and max heap size
I am trying to provide my own labelFunction for a CategoryAxis programatically but am
Trying to find some simple SQL Server PIVOT examples. Most of the examples that
I'm trying to find a way to capture the response of ASP templates for
I am trying to programatically determine if a VOB is mounted in clearcase. Specifically,
I am trying to find a way to shell or communicate with GroupWise so
I'm trying to localise a WinForms app for multiple languages. I'm trying to find
I am trying to programatically generate movie/video file using Google Earth COM APIs (along
In my windows application, I am trying to find the height of the task
I'm trying to create an NSSearchField programmatically; however, I don't know how to find

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.