>procedure TForm1.ASQLite3Table1phones_parentGetText(Sender: TField;
>  var Text: String; DisplayText: Boolean);
>begin
>  //Text := qryContacts.FieldByName('MyField').AsString;
>  Text := ASQLite3Table1.F
>end;
   
  This property doesn't come up by code completion - but it is there.

>BTW, is there a way to have this event called for all fields, so as
>not to have to copy/paste for every column?
   
  This type of question may better be answered on borland forums.
  Maybe this will work. all events point to this published method:
   
  TForm1.MyGetText(Sender: TField;
 var Text: String; DisplayText: Boolean);
  begin
    Text := ASQLite3Table1.Fields[Sender.Index].AsString;
  end;



       
---------------------------------
Looking for last minute shopping deals?  Find them fast with Yahoo! Search.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to