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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T18:58:14+00:00 2026-05-11T18:58:14+00:00

In Delphi 2009 I have a Form with a procedure MyProcedure that writes to

  • 0

In Delphi 2009 I have a Form with a procedure MyProcedure that writes to a label on the Form. The form uses a DataModule with a ClientDataSet. When the AfterScroll event of the ClientDataSet is fired MyProcedure should be executed.
To avoid circular references and more important, as I want the DataModule to be reusable,
the DataModule should not reference to this specific Form.

In short, I hope that I can access the AfterScroll event from my Form. Can I hook up the Afterscroll event on the DataModule from my Form? I thought it should be possible, but I cannot remember how to do it. Thanks in advance.

  • 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-11T18:58:15+00:00Added an answer on May 11, 2026 at 6:58 pm

    You need to put an event property in your DataModule:

    private
    FOnAfterScroll : TNotifyEvent;
    public
    property OnAfterScroll   : TNotifyEvent read FOnAfterScroll write FOnAfterScroll;
    

    You then call that event in the AfterScroll procedure in the DataModule:

    If Assigned(FOnAfterScroll) then FOnAfterScroll(Self);
    

    In Form:
    declare event handler

    procedure HandleAfterScroll(Sender : TObject);
    

    Then you assign a procedure to DataModule’s OnAfterScroll

     Datamodule1.OnAfterScroll :=
     MyHandleAfterScroll;
    

    Another way would be to send a custom windows message from DataModule and to respond to that message in the Form.

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

Sidebar

Related Questions

I just got Delphi 2009 and have previously read some articles about modifications that
I have a Delphi 2009 application that runs a query over a database using
I have written an application (using Delphi 2009) that allows a user to select
I have a Delphi 2009 program that handles a lot of data and needs
Delphi 2009 and above support unicode. I have few legacy pascal source files that
I have noticed that with Delphi 2009, I often get strange errors when compiling,
I'm converting GraphicEx project to Delphi 2009. I have trouble in converting following procedure
I have the method (Delphi 2009): procedure TAnsiStringType.SetData(const Value: TBuffer; IsNull: boolean = False);
I have an application (writted using Delphi 2009) that allows a user to run
I have an application that I have converted to Delphi 2009 I have String

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.