ExpressQuantumGrid Suite is a Grid and Data Editors Library created for Delphi and C++ Builder and available for the VCL.
Questions tagged [quantumgrid]
18 questions
0
votes
1 answer
RecordIndex out of range - DevExpress
I am having issues with a DevExpress VCL grid, throwing out a "RecordIndex out of range" error, despite not directly calling any record functions of the grid in that scenario.
What I am doing is fairly simple: once the record is…

Andrea Raimondi
- 527
- 8
- 30
-1
votes
1 answer
how to set a default value for a column in cxGrid?
How to set a default value for a boolean column in cxGrid? I mean i would like that by default all new rows have the value "False" for my boolean column

zeus
- 12,173
- 9
- 63
- 184
-1
votes
2 answers
cxgrid popup menu paste value of popupmenuitem
IN TMS string grid I used to use this to paste the caption of the popup menu into the grid's cell :
var
s:string;
begin
s:=(Sender as TmenuItem).Caption;
s:=stringReplace(s,'&','',[rfReplaceAll]);
with AdvStringGrid1 do
…

user763539
- 3,509
- 6
- 44
- 103