I am using C++Builder 12.2 and the 64bit-Modern platform. After the latest TMS update my AdvStringGrid version is 9.2.2.0. I have been using some code with the QSort function for a few years and now it is causing an error. My code is below.
AdvStringGrid1_M->SortSettings->Show = true;
if( AdvStringGrid1_M->SortSettings->Column > -1 ){
AdvStringGrid1_M->QSort();
}else{
AdvStringGrid1_M->SortSettings->Column=1;
AdvStringGrid1_M->QSort();
}
The first picture shows my code with a red arrow pointing to the problem QSort. The second and third pictures show the error message I am getting.
I have selected the code “AdvStringGrid1_M->SortSettings->Column“ and used the Popup menu Debug→Inspect and I get the error message below. It says there is no member ‘SortSettings‘ in TAdvStringGrid. Can you recommend a fix for this problem.




