This may be easy but I've poured through the dbGrids.pas and grids.pas files to no avail.
Anyone know how to read the buffered text in the TDBGrid for the current column? I tried to access through the SelectedField.AsString property but that just shows the old field data, not the current text...
I have a requirement to add a TField in memory to an in-memory TQuery. This TQuery component is not on a data module.
The code follows: Note AField is defined as TField;
qCorrect:= TQuery.Create(nil);
with qCorrect do begin
Name := 'qCorrect';
AutoCalcFields := False;
DataBaseName :=...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.