Subject Re: [IBO] IBO 4.9.5 in D2010
Author Sean
As Gerard said you need to actualise the IN_Directives.INC file to make IBO work with D2010, just added the following to IB_Derective.INC after the "{$DEFINE IBO_VCL2009_OR_GREATER} // Delphi and C++ Builder v2009 or greater" line.


{$DEFINE IBO_VCL2010_OR_GREATER} // Delphi and C++ Builder v2010 or greater

{------------------------------------------------------------------------------}

// Compiler specific defines, latest to oldest...
{$IFDEF VER210} // CodeGear For Delphi 2010
{$IFDEF BCB} // C++ Builder
{$DEFINE IBO_CPPB}
{$DEFINE IBO_CPPB_2009}
{$ELSE} // Delphi Win32
{$DEFINE IBO_DELPHI}
{$DEFINE IBO_DELPHI_2009}
{$ENDIF}
{$DEFINE IBO_VCL2009}
{$DEFINE IBO_SUPPORTED_COMPILER}
{$ENDIF}

So far so good, it's is working with D2010 and IBO 4.9.5 + IBO_Admin although I'm only using the TDataset desendants.

Regards,
Sean

--- In IBObjects@yahoogroups.com, "Alan" <alan@...> wrote:
>
> --- In IBObjects@yahoogroups.com, Gerhard Knapp <gerhard.knapp@> wrote:
> >
> > Hi Alan,
> > yes, uncomment it (bad way) or
> > actualisize the IB_Direcives.INC file, so D2010 is supported.
> > Gerhard
> >
>
> thanks Gerard - yes that's a better way - but I had already commented it out and it works fine - even got IBOAdmin installed.
> Alan
>