community.borland.com

Article #25623: Using FreeIB Components with InfoPower Controls

Problem:
What do I need to do to enable InfoPower controls with FreeIB Components?

Solution:
InfoPower Controls are 3rd party add-ons / replacements for the
Delphi VCL.

The one change you have to make is in wwCommon.pas from the InfoPower
Controls in the function  wwDataSet.  Starts on or around line 349:

  Function wwDataSet(dataSet : TDataSet): boolean;
  begin
     if dataset=nil then result:= false
     else
       result:=
          wwIsClass(dataset.classType, 'TwwClientDataSet') or
          wwIsClass(dataset.ClassType, 'TFIBwwDataSet');  // Add this.
     end;

Last Modified: 25-OCT-00