Is it possible to change the numeric decimal separator (VK_DECIMAL) for the entire application?
In Delphi I can do this with ApplicationEvents:
procedure TForm.ApplicationEventsMessage(var Msg: tagMSG;
var Handled: Boolean);
begin
if (Msg.message = WM_KEYDOWN) and
(Msg.wParam = VK_DECIMAL) and
(Odd(GetKeyState(VK_NUMLOCK))) and
(DecimalSeparator = ',') then
Msg.wParam := 188;
end;
Thanks,
Edu