
2. RxDBGrid - new procedure - SelectAllRows 3. RxDBGrid - try to fix error with edit Lockup filed in modal dialogs 4. RxDBGrid - add new key strokes: rxgcSelectAll - select all rows rxgcDeSelectAll - deselect all rows rxgcInvertSelection - invert selection rxgcOptimizeColumnsWidth - Optimize all columns width 5. New packet (rx_sort_fbdataset.lpk) and component (TRxSortFBDataSet) - add to project sort engine for FBDataSet git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2536 8e941d3f-bd1b-0410-a28a-d453659cc2b4
22 lines
402 B
ObjectPascal
22 lines
402 B
ObjectPascal
{ This file was automatically created by Lazarus. Do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit rx_sort_fbdataset;
|
|
|
|
interface
|
|
|
|
uses
|
|
RxSortFBDataSet, exsortfb, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('RxSortFBDataSet', @RxSortFBDataSet.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('rx_sort_fbdataset', @Register);
|
|
end.
|