메세지 1:
No associated index.
메세지 2:
Project Project1.exe raised exeception class EDBEngineError Whid Message 'No
associated index.'. Process stopped. Use Step or Run to continue.
위와 같은 에러가 나네요..
아래와 같은 코드를 입력했는데..
s := '제목'; // s:String;
table1.Setkey;
table1.FieldByName(s).AsString := edit1.text;
table1.GotoNearest;
> 메세지 1:
> No associated index.
>
> 메세지 2:
>
> Project Project1.exe raised exeception class EDBEngineError Whid Message 'No
> associated index.'. Process stopped. Use Step or Run to continue.
>
> 위와 같은 에러가 나네요..
>
> 아래와 같은 코드를 입력했는데..
>
> s := '제목'; // s:String;
> table1.Setkey;
> table1.FieldByName(s).AsString := edit1.text;
> table1.GotoNearest;
>
>
>
만드신 테이블에 인덱스가 없거나 일치하지 않는 인덱스를 사용하려고 하신 것 같은데요. '제목'필드에 인덱스가 없거나 다른 필드의 인덱스를 사용하고 있는 중인지 확인해 보실 필요가 있을 것 같군요.