TMSFNCGrid editing issues

While using
TMSFNCGrid --> Editing --> AutoComplete
the Latin alphabets is not CaseSensitive.
But with ÖöÄäÅå (Scandinavian alphabets) it is CaseSensitive. Could you please fix that

Hi,

We have tried this here but are not able to reproduce this.
Can you send us a sample code snippet which can reproduce the issue?

Put a TMSFNCGrid on the form.

And C++ code:

void __fastcall TForm1::FormCreate(TObject *Sender)
{
TStringList * Places = new TStringList;
Places->Add("Helsinki");
Places->Add("Äänekoski");
TMSFNCGrid1->Options->Editing->AutoComplete = acNormal;
TMSFNCGrid1->Options->Editing->AutoCompleteItems = Places;
delete Places;
}

Run and go to grid cell and write:
Press key 'h' or 'H' is autocomplete result Helsinki.
Press key 'Ä' is autocomplete result Äänekoski.
Press key 'ä' is autocomplete no result.

We were able to reproduce this issue here. Next version of the TMS FNC UI Pack will address this. Thanks for reporting!

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.