Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure ...
// this is your routine that calls to Post method
// of your Table
begin
...
try
ADOTable1.Post;
except
ADOTable1.Cancel;
end;
...
end;
procedure ADOTable1BeforePost(...);
begin
...
if (not <your condition>)then
Abort();
...
end;