![]() | Products |
| Home » Technical Support » Elevate Web Builder Technical Support » Product Manuals » Elevate Web Builder 3 Manual » Using Visual Controls » Showing Progress Dialogs |
procedure TMainForm.LoadCustomers;
begin
ShowProgress('Loading customers...');
Customer.AfterLoad:=CustomerAfterLoad;
Customer.OnLoadError:=CustomerLoadError;
Database.LoadRows(Customer);
end;
procedure TMainForm.CustomerAfterLoad(Sender: TObject);
begin
HideProgress;
end;
procedure TMainForm.CustomerLoadError(Sender: TObject; const ErrorMsg: String);
begin
HideProgress;
MessageDlg(ErrorMsg,'Error loading customers',mtError,[mbOk]);
end;This web page was last updated on Tuesday, September 16, 2025 at 04:56 PM | Privacy Policy © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

