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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:02:20+00:00 2026-06-17T20:02:20+00:00

I need to use the latest Indy component library version. Can I get the

  • 0

I need to use the latest Indy component library version. Can I get the library version by some source code command or any other trick to make sure I’m using the correct lib.
I know I’m using the indy....160.bpl – this is what my Delphi XE2 says while moving the mouse over the component bar. The latest INDY lib I take from Fulgan Indy

  • 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-17T20:02:22+00:00Added an answer on June 17, 2026 at 8:02 pm

    How to get version of Indy by using an Indy component at runtime ?

    As @Remy pointed out in his comment, you can get the Indy version from any Indy component by using the Version property. Here’s a sample using TIdHTTP component:

    procedure TForm1.Button1Click(Sender: TObject);
    begin
      ShowMessage('Indy version: ' + IdHTTP1.Version);
    end;
    

    How to get version of Indy without an Indy component at runtime ?

    You can get the whole version string in Indy’s versioning format:

    <major>.<minor>.<release>.<build>
    

    from the gsIdVersion constant defined in the IdVers.inc file included in the IdGlobal.pas unit in a way like follows:

    uses
      IdGlobal;
    
    procedure TForm1.Button1Click(Sender: TObject);
    begin
      ShowMessage('Indy version: ' + gsIdVersion);
    end;
    

    or if you have Indy revision at least since 25th October 2012 (4850), you can use the individual version information elements, whose are defined in the same include file as mentioned before e.g. this way:

    uses
      IdGlobal;
    
    procedure TForm1.Button1Click(Sender: TObject);
    begin
      ShowMessage('Indy version: ' +
        IntToStr(gsIdVersionMajor) + '.' +
        IntToStr(gsIdVersionMinor) + '.' +
        IntToStr(gsIdVersionRelease) + '.' +
        IntToStr(gsIdVersionBuild)
      );
    end;
    

    How to get version of Indy at design time ?

    To get Indy version at design time you can simply right click any of the Indy’s components dropped on a form and open its About box through the About Internet Direct (Indy)... menu item.

    Where are the version information defined ?

    As I’ve mentioned before, it’s in the IdVers.inc include file stored in the ..\Lib\System\ folder of the library and it might be the next option of how to get the Indy’s version information.

    Disclaimer

    Some of what was mentioned here applies to the Indy’s most recent version at this time, but I’m not sure if it applies also to all older versions (such as Indy 9 for instance).

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

Sidebar

Related Questions

Im trying to use msbuild to get the latest version of my code from
I am writing a webpage with CI.I use the latest version. I need to
I use the latest CI version. In config.php: $config['global_xss_filtering'] = TRUE; I can't change
I need use this code: <%= button_tag :class => btn btn-primary do %> <%=
So, I need use this event so I can navigate trought blog posts. I
I need to use javascript to get the itemid of the current page in
I am trying to use jQuery (latest version) & ajax to poll a mysql
I've got Visual Studio 2008 express, and I need to use afx.h and some
I cannot use boost or the latest std::thread library. The way to go is
Can someone please post the simplest of working code that can get the last

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.