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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:13:05+00:00 2026-05-28T19:13:05+00:00

Basically I want an activity indicator that will show at a glance that there

  • 0

Basically I want an activity indicator that will show at a glance that there is an active calculation in progress on that tab. I’m looking for something very simple, like showing a gif on the tab, or showing a sequence of strings that change with a timer. I don’t want a complicated solution or a solution that requires new components.

I already have an implementation, but I’m having a problem with it that I’m asking for a more specific solution to here: How to show backslash in a japanese locale

In the case that there isn’t a solution to the other problem, or that there is a significantly better way to do this, I am asking the more general question. In any case, I’m sure that there will be others that could use a good way to do 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-28T19:13:06+00:00Added an answer on May 28, 2026 at 7:13 pm

    Update :

    The simplest way is probably this :

    • Add an TImageList to your form.
    • Add your animation images to the image list.
    • Set the constant cMaxImageIndex to the last index of the animated list.
    • Connect the ImageList to the TPageControl.
    • Declare a function NextImageIndex.
    • Activate the timer when appropriate.
    • In the timer event, set the tabsheet ImageIndex property.

    See code :

    Const
      cMaxImageIndex = 5;
    
    procedure TForm1.FormCreate(Sender: TObject);
    begin
      FImageIndex := 0;
    end;
    
    function TForm1.NextImageIndex: Integer;
    begin
      Inc(FImageIndex);
      if (FImageIndex > cMaxImageIndex) then FImageIndex:= 0;
      Result := FImageIndex;
    end;
    
    procedure TForm1.Timer1Timer(Sender: TObject);
    begin
      PageControl1.Pages[0].ImageIndex := NextImageIndex;
    end;
    

    Note : Before activating the timer, set FImageIndex to zero, and when work is done you might also have some logic to have a default image for the tab.

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

Sidebar

Related Questions

Basically I want to set a image based on a previous activity. There is
Basically my log4mongo is logging user activity and i want to select one user
I want to create a component that will appear as a navigation menu for
So basically here is the thing that I want to know. I'm working on
Basically I want to have a button to start a new activity after login.
basically I want to encapsulate a simple component from code that I already have.
I am woundering how I could show a activity indicator on a cell from
ProgressDialog onClick not working.. here is my code .. Basically i want to show
I basically want to use link_to to link to the index method of a
I basically want to do this: grep 'example.com' www_log > example.com.YYYY-MM-DD-H:i:S.log ...with of course

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.