TDBGrid is a VCL control used to display and manipulate records from a TDataset in a tabular fashioned way. It is defined in DbGrids.pas unit.
Questions tagged [tdbgrid]
156 questions
-1
votes
1 answer
How to highlight changed cells when updating a DBgrid?
Let's say I am showing stock prices, or sports scores, or movie attendance or something.
Periodically, I will refresh the grid by Close() and then Open() of a query linked to its associated datasource.
I know how to owner draw a cell with…

Mawg says reinstate Monica
- 38,334
- 103
- 306
- 551
-1
votes
2 answers
Whats wrong with TStatusBar?
I have two forms called fmMain and fmEmpl. Both have each TStatusBar called sbMain and sbEmpl. I have a TDataModule called dmData to store the database components.
I need to update the sbEmpl panels so it can displays actual values from the database…

Jessie M
- 498
- 1
- 9
- 23
-2
votes
1 answer
Inverted Date on TDBGRID
My TDBGrid is inverting my date, even if is a string.
Ive got this STRING on my database
01/06/2016 09:05
I just want it to show as string, not date
when I set it to TDBGrid the result is:
09:05 01/06/2016
My database is FoxPro .DBF, the data im…

gui.ess
- 9
- 3
-2
votes
1 answer
DBGrid lines shown in a Memo
Is there any way to show a selected DBGrid record record in a memo?
I tried this type of code but this shows the titles of the columns and I want to show the fields' text.
procedure TForm6.btnShowClick(Sender: TObject);
var
l: String;
…

L. Blue
- 1
- 3
-3
votes
2 answers
Delphi: TDBGrid not update
I had a form which has a DataSource,AdoQuery,AdoConnection,DBgrid plus couple edit and a memo.
User enter his username,street address, etc.. and hit 'save' button. On that time the application is write the details in a comma separated txt file,…

LoneRanger
- 25
- 1
- 9
-3
votes
1 answer
(how) Can I JOIN SELECTs from multiple databases into a DBgrid?
I have separate MySQL database servers.
How can I JOIN the data from queries to the databases on these servers, and show it on a DBgrid?
[Answer] http://dev.mysql.com/doc/refman/5.1/en/federated-storage-engine.html

Mawg says reinstate Monica
- 38,334
- 103
- 306
- 551