, UpdateFormatSettings false! , DecimalSeparator reset Windows (, , ( Win + L), ). - true, false, DecimalSeparator.
-, DecimalSeparator Delphi (, FloatToStr FormatFloat). , (.), (, , . ,), OnKeyPress:
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
if Key = ',' then
Key := '.'
end;
- , ., , .
( ) OnKeyDown :
procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
var
msg: TMsg;
begin
if Key = VK_DECIMAL then
begin
PeekMessage(msg, Edit1.Handle, WM_KEYFIRST, WM_KEYLAST, PM_REMOVE);
SendMessage(Edit1.Handle, WM_CHAR, ord('.'), 0);
end;
end;