Tagged Questions
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.
9
votes
3answers
1k views
Moving Columns in a DBGrid seems to move the attached DataSet fields
I observed something last week that I did not expect, and will describe below. I am curious as to why this happens. Is it something internal to the TDataSet class, an artifact of the TDBGrid, or ...
3
votes
1answer
76 views
How can I restore a TDBGrid record view to the condition before a refresh? [closed]
Possible Duplicate:
How to avoid TDbgrid scrolling when returning to a previous location
I am looking for a way to save and restore the vertical scrolling position of a Delphi TDBGrid after ...
3
votes
1answer
276 views
Delphi dbgrid continuous scrolling
I'm making an application that holds orders and prints invoices. I have some labels, tedits, tmemos, buttons, a datasource, an adotable, a popupmenu, and a dbgrid on my form.
When I build the program ...
2
votes
3answers
4k views
Finding the current row in Delphi's TDBGrid
Is there a way of finding out which row is current in a TDBGrid?
1
vote
0answers
95 views
refreshing dbgrid after firing insert query in Delphi [closed]
Possible Duplicate:
Updating a grid after changes have been made
I am inserting a record by directly firing insert query in database
But i'm not able to find the new record in the DBGrid.
...
1
vote
1answer
131 views
Updating a grid after changes have been made
Right, this is probably going to be pretty simple. I have a form that contains a grid, if you select one of the records and press 'Edit' you get taken to another form where you can edit the data ...
1
vote
1answer
102 views
Column.Index is not reflecting immediately in TDBGrid
I have a TDBGrid and have a Client dataset associated through a TDataSource.
When i try to re-arrange the columns of the grid programtically this works fine when there are one or more columns in the ...
1
vote
1answer
135 views
TDBGrid - Synchronisation or display problem
I am facing a very strange problem in one of my programs. I have a TSQLConnection followed by two TSQLQUery, TDataSetProvider, TClientDataSet and TDataSource. Its a Master-Detail structure.
The ...
1
vote
1answer
127 views
Attach TEdit boxes to a TDBgrid column
How can I attach the edit boxes to the corresponding grid columns, so it will change width when the user change the column width and move around when the user change the order of DBGraid columns.
1
vote
2answers
954 views
ReadOnly TDBGrid/TwwDBGrid Cell in Delphi?
is it possible to set a TDBGrid (or TwwDBGrid) cell ReadOnly in Delphi? Currently I am fiddling around with literally greying the cell and clearing it after an edit, but it's not very satisfactory.
...
1
vote
5answers
2k views
How do I make a TDBGrid's columns fit the grid's width?
I've got a TDBGrid with predefined columns, and I just can't get the width right. I can mess with the Width property of the columns in the Form Designer and get the width to look just right at design ...
1
vote
3answers
2k views
How to get selected cells from TDBGrid in Delphi 5
I have a DBGrid on a form and I have made multiple selections, I now need to send the selected cells (they are email addresses) to the "TO Box" of Outlook how can I do this, I will appreciate any help ...
1
vote
4answers
709 views
TDBGrid onSelect
I would like to customize TDBGrid:
1) add onSelect/onUnselect events - e.g. good for show count of selected items.
2) remove select item on left mouse click. I have inherited TDBGrid and rewritten ...
0
votes
1answer
73 views
Implementing my own DBGrid
I want to implement my own DBGrid my problem is that i don't know much about components how can i override the onkeydown event ?
A tutorial on extending the functionality of components would be ...
0
votes
2answers
109 views
DBGrid incremental search component
I am looking into a improved DBGrid that allows me to search items only by pressing the keyboard without enetering data in the special search fields.
Any advanced functions such as colors will be ...
0
votes
1answer
23 views
How to get row number in OnDrawColumnCell event?
This is how my drawing routine for TDBGrid component looks like. I am replacing values from database based on some rules:
void __fastcall TForm_Loadpoint_Details::DBGrid1DrawColumnCell(
TObject ...
0
votes
0answers
118 views
TDBGrid Scrollbar disappears and does not come back
I use a DBGrid to show data that has been filtered by a TSQLQuery.
The database objects are assigned to each other in this order:
TSqlConnection -> TSqlQuery -> TDataSetProvider -> TClientDataSet -> ...
0
votes
1answer
837 views
Delphi - Using DBGrid to select rows from a search
I have searched a database using a query.
The results of the search are displayed in a DBGrid component for the user to select the row s/he wishes to proceed with.
DBGrid always sets the record ...
0
votes
2answers
700 views
Restore horizontal scroll position in TDBGrid
I wrote a simple method to sort column in TDBGrid.
If Option.RowSelect set to False everything works fine, but if RowSelect gets True the horizontal position scroll doesn't restore after sort column.
...
0
votes
1answer
430 views
free pascal, tdbgrid, get current row
I'm new to free pascal and lazarus stuff and i wonder how can i get row data (for example id column) from selected row in tbgrid?
-2
votes
1answer
702 views
how to change the color of selected row in tdbgrid in delphi
Iam creating an application in delphi where I want to change the color of selected row of tdbgrid which is based on search ..can it be possible ..