Using the Toolkit with Delphi

johnhutchjohnhutch Posts: 10
edited January 3, 2006 7:40AM in SQL Toolkit Previous Versions
I work with Delphi and I am trying to build a Delphi version of Auto Compare.

All is OK until I want to access the Messages the property of Work class. Delphi fails to allow access to this and other (eg Warnings) properties.

My code looks like

WK := Work.Create;
WK.BuildFromDifferences(difs, Opt, true);
msg:= work.messages ;
For I:=0 to msg.count-1 do
AddStringToMemo(msg.Text);

Do you have any suggestions as to why these properties are not available?

Comments

Sign In or Register to comment.