Ignore:
Timestamp:
Nov 24, 2011, 2:06:10 PM (13 years ago)
Author:
chronos
Message:
  • Modified: Report loading is now done by TChronisClient.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/UChronisClient.pas

    r33 r34  
    4343    ConditionUse: Boolean;
    4444    ObjectName: string;
     45    SchemaName: string;
    4546    Objects: TListObject; // TListObject<TObjectProxy>
     47    procedure SetCondition(ColumnName: string; Value: string);
    4648    procedure Clear;
    4749    constructor Create;
     
    105107{ TListProxy }
    106108
     109procedure TListProxy.SetCondition(ColumnName: string; Value: string);
     110begin
     111  ConditionColumn := ColumnName;
     112  ConditionValue := Value;
     113  ConditionUse := True;
     114end;
     115
    107116procedure TListProxy.Clear;
    108117begin
Note: See TracChangeset for help on using the changeset viewer.