예를들어 2번째 글자로 보내고 싶을경우


MFC


edit.SetFocus();
edit.SetSel(2,2);



VCL

  Edit1.SetFocus;
  Edit1.SelStart := 2;
  Edit1.SelLength := 0;