Q&A

  • 엔터키를 탭키처리
DBGrid에서, 엔터키가 들어오면, 탭키처리해서 이동하고 싶사와요.



3  COMMENTS
  • Profile
    이재원 2000.05.12 20:08
    If Key=#13 Then

    with DBGrid do

    if selectedindex < (fieldcount -1) then

    selectedindex := selectedindex +1

    else

    selectedindex := 0;



    이렇게 하시면 될겁니다.





  • Profile
    Mr.Q 2000.05.12 21:50
    이재원 wrote:

    > If Key=#13 Then

    > with DBGrid do

    > if selectedindex < (fieldcount -1) then

    > selectedindex := selectedindex +1

    > else

    > selectedindex := 0;

    >

    > 이렇게 하시면 될겁니다.

    >



    답변 고맙습니다. ^^ 이왕이면, 칼럼의 끝에 도달하면,,

    다음 row로 넘어가면 좋을텐데.. 혹시, 시간여유되시면, 한번 더 도와주시면

    감사하겠습니다. ^^;





  • Profile
    이재원 2000.05.12 23:59


    > 답변 고맙습니다. ^^ 이왕이면, 칼럼의 끝에 도달하면,,

    > 다음 row로 넘어가면 좋을텐데.. 혹시, 시간여유되시면, 한번 더 도와주시면

    > 감사하겠습니다. ^^;



    If Key=#13 Then

    with DBGrid do

    if selectedindex < (fieldcount -1) then

    selectedindex := selectedindex +1

    else Begin

    Table1.Next;

    selectedindex := 0;

    End;