lazarus-ccr/components/rx/rx_sort_fbdataset.pas
alexs75 c2e3789352 1. RxDBGrid - create new shortcat - Ctrl+A - select all rows
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
2012-09-24 14:21:22 +00:00

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.