I'm using Delphi Seattle, and have an edit
and I want the typed text to be written in uppercase
. I'm using this code:
procedure TF_Quiosque.edtCadNomeVisitanteChangeTracking(Sender: TObject);
begin
edtCadNomeVisitante.Text := AnsiUpperCase(edtCadNomeVisitante.Text);
end;
The first letters come out correctly, but from the third letter the text begins to duplicate in Edit
.