Hello support,
is it possible to get the event for the executng of the script like TMyDump?
Thanks for yor answer
TMyScript without prgress event
Unfortunately TMyScript does not have such event like TMyDump has. But there is a possibility to do this manually. For example:
Code: Select all
len := Length(MyScript.SQL.Text);
while MyScript.ExecuteNext do
ProgressBar.Position := Trunc((MyScript.StartPos / len) * 100);