Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- python3
- pyhcarm
- anaconda3
- HTML
- python 3.7
- Push
- Visual Studio
- dbadvgrid
- queryset
- MSSQL
- 델파이
- Django
- advColumnGrid
- Delphi
- declare
- COMMIT
- delphi 10.3
- 중복제거
- github
- PyCharm
- TMS
- c#
- pythonanywhere
- templates
- rank
- hackerrank
- get_object_or_404
- blog
- GIT
- 백준
Archives
- Today
- Total
목록dbadvgrid (2)
DevHyun
[TMS DBAdvGrid] 그리드 내에서 검색하기
그리드 내 검색이라기 보다는 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'..
Delphi
2021. 6. 3. 16:43
tms 그리드에서 그리드 내의 숫자 format 변경하기
tms그리드에서 숫자 format 변경은 생각보다 간단하다! property만 바꿔주면 됨! 금액관련 그리드라 천단위(1,000) 콤마가 필요한 상황! Column그리드에선 코딩으로 FormatFloat('#,##0','값')으로 컬럼 자체에 넣어주면 되는데, DB그리드에선 불가능해서 방법을 찾던 도중 property를 살펴봤더니 다음과 같은 property를 찾을 수 있었다. 숫자 컬럼에서 천단위 콤마(1,000)가 필요하다면 FloatFormat 이라는 propery에다가 '%.0n' 을 입력하자! 코딩으로 DBAdvGrid1.FloatFormat := '%.0n' 도 가능!
Delphi
2020. 11. 16. 18:32