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

  • SEARCH
  • Home
  • 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 8926321
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T07:56:45+00:00 2026-06-15T07:56:45+00:00

Using Lazarus 1.1 and Freepascal 2.7.1, I have two StringGrids – StringGrid1 and StringGrid2.

  • 0

Using Lazarus 1.1 and Freepascal 2.7.1, I have two StringGrids – StringGrid1 and StringGrid2.

StringGrid1 contains three columns; the 3rd column of which contains unique values.

StringGrid2 also has three columns, the 3rd of which also contains the same unique values but they are drawn from another source, they are in a different order and some may be missing.

I need to look through Col3 of Grid1 and lookup where (which row) the corresponding unique value appears in Grid2. So I need to parse ALL the rows of StringGrid1 Col3 and say “For each value found, find the corresponding row of Column3 of StringGrid2 that also contains that value and return it, if found, or tell me it’s missing if not found, until all rows of SG1 Col3 have been searched”.

Any ideas as to how I do that? It’s hopefully one of things that seems to me to be more complicated than it actually is but hopefully someone can help (I did find this but I don’t think it’s quite what I need? : Delphi Pages Entry? I also found this but it doesn’t quite explain how to apply it what I am doing, I don’t think wiki entry

  • 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-06-15T07:56:46+00:00Added an answer on June 15, 2026 at 7:56 am

    Discovered two ways:

    for count1 := 0 to StringGrid1.RowCount - 1 do
      for count2 := 0 to StringGrid2.RowCount - 1 do
      begin
        if StringGrid1.Cells[3, count1] = StringGrid2.Cells[3, count2] then
        begin
          ShowMessage(StringGrid1.Cells[3, count1] + ' Found In Row ' + IntToStr(count2));
          Break;
        end;
      end;
    

    The other, less efficient but still useful way using:

    for i := 0 to SL.Count - 1 do 
    begin
      ShowMessage(SG.IndexOf(SL.Strings[i])): 
      // (SG being the StringGrid and SL being a StringList)
    end;
    

    or

    ShowMessage(SG.IndexOf('Text To Search For')): 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Lazarus v0.9.30 (32 bit compiler). I have the following code that
Using MVC2 I have an AJAX form which is posting to a bound model.
I have written a program using Free Pascal and the Lazarus IDE. In brief,
I have a project on Lazarus that I want to compile a source using
I'm planning on building an application that simplifies web design. I intent using Lazarus/FreePascal
Using MVVM. I have a DataTemplate which I am using to display an expander
Using android 2.3.3, I have a background Service which has a socket connection. There's
I am using Lazarus 0.9.30.2. I have a standard TForm with a standard TStringGrid
I have managed to use SAPI Text-To-Speech in Delphi/Lazarus by using the following code:
Using CRM 4, I have an entity form that contains a tab with an

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.