Home DADE

FlashFilter Pluigin and RB v7

edited October 2003 in DADE

Is the FF plugin out of date? Trying to compile it with my new RB v7
installation I get an error because methods seem to have been re-defined in
a base class (TdaDataSet). An offending one is SetDatabaseName(). Is this
something I can patch up myself or is there an uptodate FF plugin (I
downloaded the latest one from your site)?

This is from daFF.pas

TdaffDataSet = class(TdaDataSet)
private
........
protected
procedure BuildFieldList; override;
function GetActive: Boolean; override;
procedure SetActive(Value: Boolean); override;
procedure SetDatabaseName(const aDatabaseName: String); override;
procedure SetDataName(const aDataName: String); override;

This is from daDB.pas

TdaDataSet = class(TppCommunicator)
private
..........

protected
function AddField(aField: TppField): Integer;
procedure BuildFieldList; virtual;
function GetActive: Boolean; virtual; abstract;
procedure SetActive(Value: Boolean); virtual; abstract;
procedure SetDatabase(aDatabase: TComponent); virtual;


--
Paul Toms (mailto:paultoms@cix.co.uk)

Comments

  • edited October 2003

    Try using the FF plug-in installed to RBuilder\Demos\EndUser Databases\Flash
    Filer


    --
    Nard Moseley
    Digital Metaphors
    http://www.digital-metaphors.com

    Best regards,

    Nard Moseley
    Digital Metaphors
    www.digital-metaphors.com
  • edited October 2003
    Thanks Nard..did the trick :)

    --
    Paul Toms (mailto:paultoms@cix.co.uk)
This discussion has been closed.