Subject RE: [IBO] Re: IBA_Statement.IMP ???
Author Claudio Valderrama C.
> -----Original Message-----
> From: simpor81@... [mailto:simpor81@...]
> Sent: Jueves 1 de Febrero de 2001 7:17
>
> Just to make things alittle bit clearer.
> I want to do this in my program:
>
> TIB_Connection *Connection;
> Connection = new TIB_Connection(NULL);
>
> TIB_Transaction *Trans;
> Trans = new TIB_Transaction(Application);
>
>
> This work throw the compilator.

Remember that you aren't dealing with pure C++ objects, but with Object
Pascal conventions wrapped to be usable from C++, so please follow the
guidelines to create VCL objects from BCB.

C.