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.
0
votes
0answers
14 views
How to scroll TDBGrid using TScrollBar?
In Delphi XE3, I have one TDBGrid and one TScrollBar in my form.
I want to use the TScrollBar to scroll the TDBGrid up and down.
Anybody know how?
I have this code so far but I doesn't seems ...
0
votes
1answer
51 views
Delphi DBGrid conditional dbcombo
I have a table with two columns. ConfigItem and ConfigValue. Now I want to populate this in a dbgrid where ConfigValue should be a dbcombobox.
Sample ConfigItem(First Column)
Product
Product Type
...
0
votes
1answer
58 views
Scroll bars on DB grids - seeking a definitive approach
I see lots of DB scroll bar questions, but never seem to find a definitive answer to this one.
There is no option (property) to add/hide DB grid scroll bars, either singly or jointly. The simply ...
0
votes
1answer
45 views
How to change values of a mysql database via dbgrid?
Hey guys good morning,
i got a DBGrid and the UniDac components. I a use a popupmenu and select a row. I fill via the onclick event from the popupmenu a new form with my data in my TEdit.
Now the ...
0
votes
2answers
102 views
DBGrid - how to show the differnce between a column value in two adjacent rows as another column?
Let's say I record my car's latitude & longitude every minute or so, adding a row to a table each time.
I want to have a DB grid with 4 columns
latitude
longitude
distance since last ...
0
votes
1answer
66 views
I need a DBGrid OnAfterCellClick
I have three DBGrids and three Tables, and two of them are linked with Master Fields and work as expected. When the user clicks on grid-1, it shows three items in grid-2.
When the user clicks on ...
-1
votes
2answers
49 views
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 ...
0
votes
3answers
204 views
Reassigning a datasource at run-time
I did some searching and only found more unanswered questions. :)
Using D5pro.
I want to reassign the DataSource to a TDBGrid at run time. I have seven identical structured DataSets and depending on ...
1
vote
1answer
79 views
How to get the length of the longest entry on TDBGrid Columns
I have a TDBGrid component called grMain. I need to know length of value of the longest entries of Column which retrivied on grMain to adjust the minimal width of the form holding the grMain.
How to ...
3
votes
1answer
429 views
Why is the vertical Scrollbar on a TDBGrid not displayed?
I have two DB grids on a form and one has a vertical scrollbar and the other doesn't, even when the DataSource query returns more results than the Grid's visible rows.
Why is the vertical scrollbar ...
0
votes
2answers
158 views
Where the TDBGrid Columns resize event was triggered
I have a TDBGrid component. I need to catch the event triggered when I'm resizing a column of the grid.
0
votes
0answers
423 views
How to adjust DBGrid columns width automatically
I've been try to use this Delphi code with C++ Builder XE. I manually convert the language into C++ Builder language.
This procedure was working correctly. When I try to maximize the form holding the ...
1
vote
1answer
35 views
Whats wrong with TDateTime value
I have a TDateTime variable called currMonth. currMonth's value is "6/30/2000 11:59:59 PM".
I need to insert currMonth as default value for a field at TDBGrid called dtBegin.
I try this code :
...
0
votes
0answers
31 views
How to debugging query on ApplyUpdates() procedure
I have a database application written in C++ Builder XE and configured with MySQL database using dbExpress driver.
I display the database tables with TBDGrid object. I need to insert new entry ...
0
votes
0answers
27 views
Where the new cell create event was triggered?
I have a DBGrid in C++ Builder XE. I use MySQL database connection via dbExpress. I need to insert new entry into database.
When I go to the last record of the grid and click the Down Arrow button on ...
0
votes
0answers
25 views
How to knows state of OnCalcFields event handler if was triggered for second time
I have a Internal Calculated Field named Date. Date is need to be edited if the value has been changed on TDBGrid but I don't know how to recalculate/update value of Calculated Field inside ...
0
votes
2answers
146 views
How to edit Calculated Field value in C++ Builder XE
I have a TDBGrid which shows some calculated fields. I'm use MySQL database.
I need to edit field values of one calculated field called "Date" but I can't.
I try to edit other field called ...
1
vote
2answers
384 views
Exporting DBgrid to CSV?
I have a DB grid which is sorted (the user clicked a few radio buttons and checkboxes to influence the display).
I would like to export all of the data (not just what is visible in the grid), sorted ...
0
votes
0answers
151 views
Lazarus + PostgreSQL: How to refresh Grid with data
I am successfully loading data to a grid like this:
procedure TfrmSearchSupplier.FormCreate(Sender: TObject);
begin
dbTrans_SuppSearch := TSQLTransaction.Create(nil);
dbTrans_SuppSearch.DataBase ...
4
votes
1answer
243 views
Detect which cell was clicked in TDBGrid when dgRowSelect is set to True?
In Delphi 2010 is there any way to detect which cell was clicked when dgRowSelect is set to True ?
Normally I would use the OnCellClick(Column: TColumn) event handler, but this does not work as ...
0
votes
1answer
394 views
how to keep track of selected rows with dgRowSelect = False
When dgRowSelect = False how can i detect the selected row within the OnDrawColumnCell method?
Not the selected cell, but the row that contains the selected cell.
0
votes
1answer
363 views
how can i colour whole row in DBGrid with rowselect turned off?
RowSelect breaks the functionality of OnCellClick, so I need to turn RowSelect off.
So then how can I simulate to look of row select by highlighting the all the cell of the current row?
1
vote
1answer
212 views
DB grid : How to use a column of the current row of one as an index into another?
I am not sure if the question title is clear enough, please feel free to edit it.
Basically, I have two DB grids which reflect two database tables, each grid showing one.
When the user selects a row ...
1
vote
1answer
132 views
DB grid - can I display titles in the first row, not the first column?
I want to show MIN(), AVG(), MAX() for 5 measurements.
Given my screen real-estate, it woudl be much better to display my DG grid vertically than horizntally.
I would like to have a DB grid with 2 ...
4
votes
3answers
205 views
How to display TIMEDIFF(now, then) in a DB Grid?
Sorry, I am very new to DbGrids.
Should I use the quey's field editor and somehow add a new field that captures the TIMEDIFF and then just add that as a column in my DbGrid?
Or can/should I skip the ...
3
votes
2answers
165 views
How to manipulate the contents of a DB Grid before display?
I have a column in a DB table which stores pressure. The pressure is always stored as PSI and can be converted to BAR by diving by 14.5.
The user can toggle display of PSI/BAR with a Radio Group.
I ...
3
votes
3answers
918 views
How to auto fit/scale DBGrid's (or other similar) columns widths according to its contents?
I am trying to make a frame with a DBGrid that will serve for more than 10 tables with half of its fields as defaults, and other fields exclusive for each table.
As the space for the columns are ...
1
vote
1answer
114 views
Why do my tool tips appear far away from the mouse coordinates?
I want to show a hint as the user moves the mouse over a TDbStringGrid. It almost works, but the hint shows high and to the left.
In my OnMouseMove, I receive X & Y, which I think are abosulte ...
1
vote
2answers
577 views
How to get the text under the cursor in a TDbGrid
Screen width is just not enough to display some text fields. I don't know how to auto-wrap them and I doubt that it can be easily done.
So, I thought that I would do something like
procedure ...
0
votes
2answers
477 views
TDBGrid columns design time or run time?
I am using TDBGrid for the first time.
I didn't even notice the Columns property in the object inspector and everything went just fine: the grid was filled.
Then I saw the Columns property and tried ...
0
votes
4answers
222 views
Tweaking a TDbGrid
I am taking my first stumbling steps into DB aware controls (any good tutorials?).
I have a MySql table with 6 columns and have managed to load it into a TDbGrid.
One of the columns however is an ...
1
vote
1answer
101 views
is it possible to edit a field in a VCL TDBGrid with TADOTable as a data source?
I recently modified some old UI code using Delphi's VCL to use ADO instead of BDE. One of the screens used a TDBGrid control to modify the underlying DataSource, but it appears that is no longer ...
0
votes
1answer
250 views
1
vote
3answers
2k views
How to modify a cell value in Delphi TDBGrid
I have to display some modified 'masked' value in a VCL TDBGrid (Delphi XE2), ie : change 'password' to 'xxxxxxxx' or uppercase 'pass' to 'PASS' or others.
As my Fields are dynamically created (but ...
1
vote
1answer
524 views
Delphi - DBGrid does not display UTF8 calculated field
I have a TDBGrid linked to a TDataSource with a TFibDataSet behind. On the OnCalcFields of the dataset I'm trying to add the string 'Russisch (русский)'.
procedure ...
0
votes
0answers
220 views
drag multiple records from dbgrid
I have a TDbGrid with some records. I want to drag an drop multiple records to a listbox on simple drag and drop. but after selecting the multiple records when i click on the selected records of grid ...
0
votes
0answers
134 views
DbGrid clears field inTClientDataSet when clicking empty space
I got a DbGrid on a form hooked up with a TClientDataSet which gets its data via a TadoStoredProc connected to SqlServer 2012. I also got a number of TdbEdits on the same form all connected to the ...
0
votes
0answers
122 views
How to load .db file on C++ Builder XE
I have a lot of dBase (.db) files on my project.
I need to load it values in the TDBGrid Component on the Form by programmatically using C++ Builder XE..
Can anyone describe to me how to do that?
...
1
vote
2answers
270 views
What is the rect of a clicked Title on a TDBGrid in Delphi?
I'd like to identify the screen coordinates of the Title cell which was clicked on the TDBGrid event TitleClick(Column: TColumn).
I can use the ColWidths property (exposed via a TDBGrid = ...
0
votes
0answers
124 views
I can't refreshing TDBGrid record set..
I have a Database project mix with RAD Studio C++ Builder XE using dbExpress component.
I must sort my table here but I can't refreshing any change/update on my TDBGrid record set. I've been change it ...
0
votes
0answers
55 views
How to use "OnColumnMoved' event handler with a TDBGrid? [closed]
I have a Database project with RAD Studio C++ Builder XE using the dbExpress component.
I must handle a Grid 'Drag Title' event with a TDBGrid Component. I think I need to use the OnColumnMoved event ...
4
votes
1answer
360 views
TDBGrid status bar for column agregate
Got a grid with some numeric columns and it's need to implement for each column an agregate (sum or count) and display it under the corresponding column.
I know that some suites (DevExpress or other) ...
0
votes
1answer
376 views
DELPHI: Put calculated value into a master detail where details are in a grid
I have created a master-detail relation using ClientDataSets (Service & Addons). The Services are displayed in a DBLookupComboBox (cboServices) and once a service is selected the Addons are ...
3
votes
3answers
512 views
Delphi grid with a different data type in each row, displayed dynamically
I am trying to create a Delphi grid to allow display and edit in a db grid of data that might have a different data type on each row. I would like to display a specific control for each data type, ...
0
votes
1answer
209 views
Using VCL components to display very large datasets in a grid
My C++ CAD application maintains logs of the user's modeling operations so that they can be unapplied and reapplied. Any particular project may contain just a few operations or it may contain ...
3
votes
1answer
1k views
How do I get screen coordinates of the DBGrid cell
I want to show popup button or fancy message (with coloured background, etc) just under right-bottom corner of particular cell of the current row.
For now I only figured how to get grid coordinates:
...
1
vote
0answers
155 views
refreshing dbgrid after firing insert query in Delphi [duplicate]
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.
...
4
votes
1answer
554 views
How can I restore a TDBGrid record view to the condition before a refresh? [duplicate]
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 ...
0
votes
1answer
223 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
495 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 ...

