Difference between revisions of "Midware TMWTable.OnRequestDone"
Jump to navigation
Jump to search
(Created page with ' Main page -> Midware component reference -> TMWTable -> OnRequestDone…') |
|||
Line 3: | Line 3: | ||
== Definition == | == Definition == | ||
− | + | <syntaxhighlight lang="delphi"> | |
+ | type | ||
+ | TRequestDone = procedure (Sender : TObject; Error: Integer) of object; | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | <syntaxhighlight lang="delphi"> | ||
+ | property OnRequestDone : TRequestDone; | ||
+ | </syntaxhighlight> | ||
== Description == | == Description == |
Latest revision as of 12:30, 24 May 2011
Main page -> Midware component reference -> TMWTable -> OnRequestDone
Definition
<syntaxhighlight lang="delphi">
type
TRequestDone = procedure (Sender : TObject; Error: Integer) of object;
</syntaxhighlight>
<syntaxhighlight lang="delphi"> property OnRequestDone : TRequestDone; </syntaxhighlight>
Description
Occurs when design time request has been satisfied and a result set is available.
When design time request has been executed, then event OnRequestDone is triggered. You may use it for example to update user interface.