Download all you need here
Database
[ Delphi ] – Get the table version
Jun 4th
function GetTableVersion(Table: TTable): Longint; var hCursor: hDBICur; DT: TBLFullDesc; begin More >
[ Delphi ] – Select a random data record
Jun 4th
procedure TForm1.Button1Click(Sender: TObject); begin Randomize; Table1.First; More >
[ Delphi ] – Select all Fields in a TDBGrid
May 4th
function GridSelectAll(Grid: TDBGrid): Longint; begin Result := 0; Grid.SelectedRows.Clear; with Grid.DataSource.DataSet do begin First; DisableControls; try More >

