On Tue, 4 Mar 2008 13:43:46 -0800 (PST), Rael Bauer
<[EMAIL PROTECTED]> wrote:
>  3. Add code in this event like the following:
>    Text := qryContacts.FieldByName('MyField').AsString;

Thanks for the tip, but Aducom's Table component doesn't have a
FieldByName property.

procedure TForm1.ASQLite3Table1phones_parentGetText(Sender: TField;
  var Text: String; DisplayText: Boolean);
begin
  //Text := qryContacts.FieldByName('MyField').AsString;
  Text := ASQLite3Table1.F
end;

BTW, is there a way to have this event called for all fields, so as
not to have to copy/paste for every column?

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to