728x90
반응형
해당 월의 처음과 끝 날짜 알아오기
uses DateUtils
var
firstDay, lastDay: TDate;
begin
firstDay := StartOfTheMonth(DateTimePicker.Date);
lastDay := EndOfTheMonth(DateTimePicker.Date);
Edit1.Text := FormatDateTime('dd',firstDay);
Edit2.Text := FormatDateTime('dd',lastDay);
end;
728x90
반응형
'Delphi Tip > +Tip' 카테고리의 다른 글
TStreamMemory (0) | 2022.02.09 |
---|---|
델파이 후킹(hooking) (0) | 2022.02.08 |
떠있는폼이 IsWindowEnabled인 상태 체크 (0) | 2022.02.03 |
델파이 바이러스 백신 및 체크방법 (0) | 2022.01.28 |
모달폼(다이얼로그 등)이 떠 있을 때 폼 visible 막기 (0) | 2022.01.27 |
댓글