The OnChange event for TdxBarCombo controls doesn't always fire on 64-bit Windows. Making the following change to dxBar.pas fixes the issue:
// line 30849
Delphifunction TdxBarWinControl.GetText: string;
var
S: PChar;
Len: Integer;
begin
if Handle <> 0 then
begin
S := StrAlloc(256);
Len := SendMessage(Handle, WM_GETTEXT, 255, LPARAM(S)); // cast changed from LongInt to LPARAM
if Len = 0 then
Result := ''
else
Result := S;
StrDispose(S);
end;
end;
A similar problem seems to exist in dxBarExtDBItems.pas:
Line 603 should probably be (in TdxBarLookupCombo.KeyPress):
SendMessage(GetEditHandle, EM_GETSEL, WPARAM(@AStartPos), LPARAM(@AEndPos));
Also cxTextEdit.pas line 5226 (in TcxCustomTextEdit.WndProc):
SendMessageW(InnerControl.Handle, EM_REPLACESEL, 1, LPARAM(PWideChar(Replacement)));
And dxSpellCheckerAutoCorrect line 403 (in TdxSpellCheckerAutoCorrectManager.ApplyChanges):
PostMessageW(Adapter.EditorHandle, DXM_SPELL_AUTOCORRECT, 0, LPARAM(@dxSpellCheckerAutoCorrectWord));
Doing a search for PostMessage() and SendMessage() found similar issues in some of the demo projects, but I won't list those here.
Thank you for your valuable research. I have forwarded this ticket to our developers for further investigation.