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 TForm1.FormCreate(Sender: TObject);
begin
table1.Open;
lblSearch.Caption := 'search on CustNo';
end;
procedure TForm1.DBGrid1TitleClick(Column: TColumn);
begin
table1.IndexFieldNames := column.FieldName;
lblsearch.Caption := ' search on ' + column.Title.Caption;
end;
procedure TForm1.edtSearchChange(Sender: TObject);
begin
if (edtSearch.Text <> '') then
try table1.FindNearest([edtSearch.text]);
except
on EDatabaseError do;
on EConvertError do;
end;
end;