Thomas Post
Thomas Post

Reputation: 535

How to refresh child form when change of focus on parent form

Basically I want to refresh a child form when focus is changed on parent form.

Could anyone give leads to achieve that?

Upvotes: 2

Views: 2855

Answers (1)

Jan B. Kjeldsen
Jan B. Kjeldsen

Reputation: 18051

Have a look on Tutorial Form Dynalink.

The easy way involves no code at all, provided the table in the child form have a relation to the table in the parent form. A record change in the parent form notifies the child form, making it call the linkActive method which then calls the executeQuery method on the child table datasource.

Upvotes: 3

Related Questions