tstringgrid is VCL grid control designed to manage the handling of strings and associated objects. It is defined in the Grids.pas unit.
2
votes
2answers
69 views
Selectively ShowHint with StringGrid
In a StringGrid component descendant, I want to change the popup Hint message depending on the value of a cell. My coding:
procedure TForm.GridMouseEnterCell(Sender: TObject; ACol, ARow: Integer);
...
1
vote
1answer
102 views
Hiding focusRectangle for a StringGrid : Delphi
I'm trying to hide the border (focus rectangle) which Delphi draws around the currently selected cell in a StringGrid. I'm doing owner drawing to customize the appearance of the string grid. I've ...
0
votes
1answer
8 views
FixedColumn in StringGrid
It is possible to fix for example only third row in StringGrid?. StringGrid have property FixedColumn but you can start fixing columns only from the begining.
tnx!
0
votes
0answers
24 views
Saving to file from StringGrid row
Can someone know how to save a row from StringGrid to file until stop button in pressed? I have variables which are periodicaly followed so i want to see how variable was changing. I am trying to use ...
0
votes
0answers
19 views
Moving data from one to another StringGrid in right order
i have got two stringGrids. In first StringGrid there is one column with the variable names, one with variable addresses and column with checkboxes. What do i want here is that when i check one of the ...
0
votes
0answers
43 views
EditBox inside StringGrid
I have problem with inserting Editbox in StringGrid. I have one StringGrid and one Editbox on my form. The editbox shows just fine in the selected col and row but i can insert just one number in the ...
-4
votes
2answers
152 views
how do i fill in a string grid with an array of records
I have the record structure of
Tperson = record
// setting/declaring the record
firstname: string[30];
surname: string[30];
form: string[5];
catscore: real;
predictedgrade: string[2];
...
3
votes
2answers
148 views
How do I delete a TStringGrid row?
I have a TStringGrid, and I want to delete the selected row. Basic things I've tried only delete the last row. How do I delete an arbitrary row?
0
votes
1answer
246 views
Programmatically highlight a stringgrid row
i have a string grid in Delphi 7, with 0..N rows. There is a listbox with numbers from 0..N
if the user clicks on the any number in the listbox number , that row number should be selected on the ...
1
vote
1answer
150 views
Start typing in a selected cell of a stringgrid
With Dephi XE, when the user clicks a button, I want to be able to select a cell (no problem) in a StringGrid (SG) and then allow the user to immediately start typing into that cell.
SG.Row := ...
3
votes
1answer
158 views
How to display row number in TStringGrid?
How do I create a column in a TStringGrid in FireMonkey that displays the row number?
If it's by using a LiveBinding, I can't figure out how.
1
vote
1answer
202 views
plot stringgrid values on Tchart
I'm trying to plot a graph with some values on my Stringgrid. it has 140x140 rowxCol, numbers only. The Tchart should display on the X-axis the cell coordinates, in the y-axis the values.
I'm using ...
0
votes
1answer
221 views
What does a StringGrid's OnSetEditText event do?
I thought OnSetEditText was fired whenever text in a cell changed. After setting a breakpoint and experimenting, I know that's wrong :-) So, first, when is this event fired?
Second, if I would like ...
0
votes
2answers
92 views
Searching the column of StringGrid1 to see what row it appears in StringGrid2 - Lazarus & Freepascal
Using Lazarus 1.1 and Freepascal 2.7.1, I have two StringGrids - StringGrid1 and StringGrid2.
StringGrid1 contains three columns; the 3rd column of which contains unique values.
StringGrid2 also ...
0
votes
0answers
160 views
StringGrid with Scrollbar wan't automatically display movement
I use c++ builder and put TStringGrid and in options check Scrollbars and want to see how rows are changed when i scrolling. By default when scrolling down result came out after a let out scroll ...
1
vote
1answer
568 views
Filling a TStringGrid in Delphi
I have a TStringGrid say StringGrid1 and one textbox say textbox1 on my delphi form. When I enter anything in textbox1, that comes in next row of the StringGrid1.
I want that the new enteries in ...
0
votes
2answers
392 views
Calculating StringGrid height when adding a row
Given that I want my string grid to have equal height rows ...
I know that it will start with exactly 5 rows and I make it so at design time.
At run time I may want to add some extra rows (and I ...
3
votes
1answer
216 views
Mouse over stringgrid when dragging?
Parts of my stringgrid are eligible drop targets, and some are not (first row is column headings, first column is a sort of index and subsequent columns may be dropped to). I have that coded and ...
6
votes
1answer
359 views
What is the normal colo(u)r of a selected stringgrid row?
I am overriding OnDrawCell for a string grid. In certain circumstance, I want to use the normal TColor that is used for the selected row when the system does the drawing (no OnDrawCell).
Which ...
2
votes
3answers
906 views
How to quickly add many rows to a TStringGrid?
I googled and found a lot of advice, but it all seemed several years old and none of it helped.
I have a string grid with 8 columns and once I get more than a few hundred rows it is taking over 2 ...
4
votes
2answers
490 views
Writing data into a Delphi TStringGrid from an external application
I have a legacy application written in Delphi, and need to build a mechanism for
reading and
writing
data from/to a TStringGrid.
I don't have the source code of the application, there is no ...
0
votes
1answer
442 views
How do I prevent the scroll wheel from selecting the last row of a TStringGrid?
I have a TStringGrid with several rows in which I implemented some kind of 'read-only' row. More exactly, I don't allow the user to click the penultimate row. If the user clicks the last row nothing ...
1
vote
2answers
780 views
Smooth scroll string grid
I need a string grid which can scroll smoothly, as opposed to locking in the top row / left col positions. When you scroll a TStringGrid, the left visible column and top visible row snap into position ...
3
votes
1answer
1k views
Copy multiple cells from grid to clipboard in excel format?
I'm working on a tool which connects to a SQL Database, gets back a dataset, and displays that data in a grid. The user must be able to select a block of cells (just rectangular) and press CTRL+C to ...
3
votes
3answers
816 views
Why don't child controls of a TStringGrid work properly?
I am placing checkboxes (TCheckBox) in a string grid (TStringGrid) in the first column. The checkboxes show fine, positioned correctly, and respond to mouse by glowing when hovering over them. When I ...
2
votes
0answers
910 views
Example of Sorting a Firemonkey StringGrid
My basic attempt at sorting a Firemonkey Stringgrid, as couldn't find any other examples. I would welcome any optimisations or other suggestions on best achieving this. My code basically gets the ...
0
votes
2answers
504 views
list all files from a directory in a string grid with delphi
I am working with Delphi 7 and I would like to list all the files in a given directory in a string grid (one file per row and all in 1 column). I have searched for about an hour now and cannot find ...
1
vote
2answers
771 views
0
votes
1answer
320 views
C++ builder TstringGrid get string from specific cell
Hello everybody i have C++ tStringGrid
I want to get string from specific cell with coordinates
I have tried this but without luck:
UnicodeString cell_obj = ...
0
votes
1answer
710 views
How to check whether a cell in a StringGrid is modified
I would like to know how to programatically determine that the data in a cell of the string grid is modified?
I have a string grid in a form. The data for the stringgrid is loading from the Database. ...
0
votes
1answer
946 views
Export TStringGrid to doc, xls and pdf
I have a kind of report that I`ve created with the help of TZColorStringGrid (it is a descendant of the Delphi's TStringGrid) and I want to be able to export to doc, xls, pdf and also to be able to ...
0
votes
2answers
2k views
colour a stringgrid column depending on columnname text
I am doing this :
procedure TForm1.BitBtn1Click(Sender: TObject);
var dtStart: TDateTime;
I: Integer;
begin
dtStart := DateTimePicker1.Date;
for I := 0 to 7 do
AdvStringGrid1.Cells[I+1, 0] ...
0
votes
1answer
285 views
Is there a native .NET component that is analogous to the StringGrid?
I need a control like a StringGrid (a multi-celled grid or table-like control (spreadsheet, matrix, whatever). Is there something that can be used as such in .NET?
2
votes
1answer
913 views
right justify delphi stringgrid column but keep themed drawingstyle
I am using delphi 2010 for a project with a stringgrid. I want some columns of the grid to be right justified. I understand how I can do this with defaultdrawing set to false.
I would like, however, ...
2
votes
1answer
2k views
inserting image in stringgrid cell
i m using stringgrid in my application.The data is fetched from the database(backend mysql) and displayed in stringgrid.
I want to insert image in status cell of each row.
i.e.
if status ...
2
votes
1answer
360 views
How To Change The Font Size Of Hint Text Associated With a TStringGrid Cell
I am using Lazarus v0.9.30 (32 bit compiler).
I have the following code that I use to show the hint text stored in the object associated with a TColumnTitle object in a TStringGrid.
procedure ...
2
votes
1answer
1k views
How To Toggle The cell Colour And Text In A TStringGrid On And Off
I am running Lazarus v0.9.30 (32 bit compiler).
I have a TForm with a standard TStringGrid on it. The grid has the following properties set. RowCount = 5, ColumnCount = 5, FixedCols = 0, FixedRows ...
2
votes
1answer
493 views
Why Do The Cell Properties In A TStringGrid Column Title Cells Change When A Grid Is Loaded?
I am running Lazarus v0.9.30 (32 bit compiler).
This question is an extension of a previous question of mine.
The previous question revolved around how to change the orientation of text in the ...
5
votes
1answer
522 views
How simple to rotate text in stringgrid in delphi?
Is simple way to rotate text in stringgrid (90 and 45 degrees)? Or is there FREE component like TStringGrid with text rotation in cell?
1
vote
1answer
291 views
How Can I Paint All The Column Title Cells Of A TStringGrid Different Colours?
I am running Lazarus 0.9.30.2.
I have a TForm on which there is a TStringGrid. Each column title is a TGridColumns object that I added dynamically to the grid at run time. Each column title has ...
2
votes
1answer
395 views
How to avoid having a fixed column when adding columns dynamically to a TStringGrid at runtime?
I am using Lazarus 0.9.30.2.
I have a standard TForm with a standard TStringGrid on it. The string grid has no columns or rows on it at design time. In the Object Inspector the following values are ...
2
votes
1answer
322 views
How do you associate an object to a TGridColumns object
I am running Lazarus 0.9.30.
I have a standard TStringGrid on a form and have a function that dynamically adds TGridColumns objects to it at run time. I have a collection of objects that contain all ...
3
votes
1answer
914 views
How can you get hints for cells in a TStringGrid appearing more smoothly?
I am running Lazarus 0.9.30.
I have a standard TStringGrid on a form and want to show a different hint as I move my mouse pointer over a column title. I am using this code to do this and it sort of ...
2
votes
2answers
814 views
String Grid using Styles in Delphi XE2 - Scroll bar doesn't update
I'm making a simple application in Delphi XE2 which uses specifically the "Carbon" style. There's a large String Grid which has thousands of rows. I have a process which loops through the records of ...
1
vote
1answer
524 views
How do you set up a click event on a TStringGrid column header (fixed) so visually it looks like you are pressing a button
I am working with Lazarus v0.9.30.
I have a TForm with a TStringGrid on it.
I have a fixed row in the grid, which is where I have all of my column headers. Each column is a TGridColumn object and ...
0
votes
3answers
2k views
Loading StringGrid from text file
How can I load text file with integer numbers separated with space to StringGrid? Each number to each cell. Grid has to be a rectangle, so if some number is missing it should be filled with 0.
Here's ...
5
votes
1answer
924 views
How can you change the text orientation in cells in the fixed rows in a Delphi TStringGrid
I have a standard TStringGrid on a form.
I have one Fixed Row in the grid that contains a number of columns, which are all TGridColumns objects. I have set the column titles using the object inspector ...
4
votes
1answer
370 views
ListView and coloring cellls
I have ListView (vsReport) and StringGrid and what I want is if I click on some element in ListView, particular cells in StringGrid have to change colors. How do I do it?
Path is filled with 1 (move ...
2
votes
1answer
3k views
Stringgrid with buttons
1st Question:
How do you call the part in stringgrid that is not visible? You need to scroll to see it.
For example:
There are 20 rows in a stringgrid but you can see only 10 at a time. You need to ...
5
votes
1answer
564 views
delphi xe2 stringgrid with comments
Can anyone recommend a good stringgrid like component for Delphi that handles comments on each cell similar to Microsoft Excel? I am searching the web but haven't found much yet and would appreciate ...
