TMSFNCEdit autofocus

Is there a way to set AUTOFOCUS for a TMSFNCEdit field so that any data already in the field receives autofocus on entry.

You mean select all text upon entering the edit? You can use the OnEnter event and use SelectAll

procedure TForm1.TMSFNCEdit1Enter(Sender: TObject);
begin
  TMSFNCEdit1.SelectAll;
end;

Thanks for that. Works good.