I have noticed that the ttable GetText procedure for tables (specific fields in table) is not fired until you actually try to reference the field on the screen (via a grid).
Under ttable native access, the GetText procedure is fired as soon as you open the table.
Any thoughts on how I can force this procedure to fire on open.
I am using it to reformat (or not display) dates.
SDAC 3.00.2.9, Delphi 7.1
procedure TForm1.MSTable1Invoice_DateGetText(Sender: TField;
var Text: String; DisplayText: Boolean);
var
strtemp: string;
begin
strtemp := Sender.AsString;
end;