본문 바로가기

분류 전체보기132

델파이 - vcl - TStatusbar 텍스트정렬 델파이에서 TStatusPanel 에 Aligment 가 있어서 여기에서 taLeftJustify, taCenter, taRightJustify 를 선택하면 그에 맞게 써주는데 어떻게 구현이 되어 있는지 궁금해졌다. TStatusbar 의 소스코드를 둘러보다가 텍스트 정렬을 하는 부분을 봤는데... 흐음? #9 ?? #9#9? 아스키코드 9 는 탭문자 다.. 그렇다. 한개 붙으면 가운데정렬, 두개붙으면 오른쪽 정렬이다. 아마도 윈도우 공용콘트롤인 TStatusbar 에서 그렇게 되어 있나 보다. ( 자세한건.... 아직 못찾음 ) 흠 그럼 그냥 Statusbar.Panel[0].text:= #9+'가온데로~'; 하면... 된다. 마치 taCenter 를 적용한것처럼... 그럼 Statusbar.Panel.. 2022. 8. 24.
delphi - cxGrid - row별 Column implement editior 설정. Q: Column 에디터 를 row 별로 따로따로 설정 할수 있는가? A: TcxGridDbColumn.OnGetProperties 이벤트에서 AProperties 를 설정해주면 된다. if ARecord.Index = 0 then AProperties:= TcxButtonEditProperties.Create( self ) else Arecord.index = 1 then AProperties:= cxEditRepository.Items[0].Properties; * 각 에디터에 해당하는 유닛들을 직접 uses 절에 포함시켜 줘야 하고 각종 옵션들도 역시 직접코드로 설정을 해줘야 하겟지~ 아니면 cxEditRepository 미리 쓸꺼 만들고 옵션도 설정해주고 쓰면 된다. 참고 https://suppo.. 2022. 6. 24.
git - 토큰 인증. 오랫만에 git 를 새삼스레 처음부터 공부 하고자......................... 뭐 여튼 간에 정말 정말 오랫만에 git --help 를 실행해보았다. 우선 github 에 저장소 하나 생성하고 git init 부터 해서 commit 하고 push 를 해보았는데... remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more informa.. 2022. 4. 14.
델파이 / C++빌더 커뮤니티 에디션 10.4.2 델파이 / C++ 빌더 커뮤니티 에디션 10.4.2 업데이트 Delphi & C++Builder Community Editions Now Available in Version 10.4.2! Delphi and C++Builder 10.4.2 Community Editions blogs.embarcadero.com 2021. 7. 21.
반응형