DevHyun

[TMS DBAdvGrid] 그리드 내에서 검색하기 본문

Delphi

[TMS DBAdvGrid] 그리드 내에서 검색하기

D3V3L0P3R 2021. 6. 3. 16:43

그리드 내 검색이라기 보다는

db그리드와 연결된 query 컴포넌트에서 내가 원하는 값에다가 커서를 둔다는 개념으로 이해를 하였음!

 

'Query Component Name'.Locate('Column Item Name', 'Query Component Name'.FieldByName('Field Name').AsString, [loCaseInsensitive]);

 

- 검색 방법

[loCaseInsensitive]

- Key fields and key values are matched without regard to case.

[loPartialKey]

- Key values can include only part of the matching key field value; for example, 'HAM' would match both 'HAMM' and 'HAMMER.'

Comments