|
- TDBGrid - Free Pascal wiki
TDBGrid is a visual component that displays tabular data from database contents through means of a TDataSet derivative like a TSQLQuery The TDBGrid component is available from the Data Controls tab of the Component Palette
- TDBGrid stretching last column in grid
Is there a way to stretch the last column (or even better, to choose the column index to stretch) in a DBGrid where there are not enough columns to fill the grid? Thanks!
- Custom control in Lazarus Freepascal DBGrid (or StringGrid)
I only want to display the text from a specified column in a DBGrid StriingGrid in a control (for example a TLabel) displayed on the grid The control must must be displayed on all rows, not just the selected row
- Populating a TDbGrid - Free Pascal
1) dbgrid does not require you to add the columns manually, simple opening a linked dataset should auto populate the columns collection with all the columns returned by the query using the field's name as column title DBGrid1 Columns Items[0] FieldName := SQLQuery1 Fields[0] AsString
- How to load a XML CSV ODB file in DBGrid in Lazarus Free Pascal?
Therefore what you need to do is to load the TDataSet descendant from the file, and the data will then automatically display in the TDBGrid (while the dataset is open) Lazarus's standard components include several TDataSet descendants, including TMemDataSet and TCSVDataSet, with LoadFromFile and LoadFromStream methods
- [SOLVED] Grid To display SQL query result - Free Pascal
But you need to keep the dataset open for it to be able to show it in the tdbgrid Make the tsqlquery a class variable and create it in formcreate and free it in formdestroy Then activate it in your procedure and keep it active
- KControls - Lazarus wiki - Free Pascal
TKDBGrid - control for working with database tables, possible replacement for TDBGrid; TKMemo - native replacement for TMemo TRichEdit - written from scratch, great features, full RTF support etc TKHexEditor - powerfull control for binary file editing
|
|
|