You've already forked lazarus-ccr
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
33 lines
440 B
ObjectPascal
33 lines
440 B
ObjectPascal
unit RxSortFBDataSet;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
TRxSortFBDataSet = class(TComponent)
|
|
private
|
|
{ Private declarations }
|
|
protected
|
|
{ Protected declarations }
|
|
public
|
|
{ Public declarations }
|
|
published
|
|
{ Published declarations }
|
|
end;
|
|
|
|
procedure Register;
|
|
|
|
implementation
|
|
uses exsortfb;
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterComponents('RX DBAware',[TRxSortFBDataSet]);
|
|
end;
|
|
|
|
end.
|