Q&A

  • 이것도 외부 Unit에서 불러올 수 있나요?
다음과 같은 폼에서 엔터로 객체간 이동시키는 프로시져도 다른 Unit에 넣어놓고, 불러와서 쓸 수 있나요?


procedure TFrm_Com.EnterKeyPress(Sender: TObject; var Key: Char);
begin
   if Key=#13 then
      SelectNext(Sender As TWinControl,True,True);
end;


TFrm_Com 부분에서 어떻게 처리해야할지 몰겠네요.
그냥 저대로 하면 에러고.. -_-;;
0  COMMENTS