출처 - http://andyadic.tistory.com/entry/%EB%8D%B8%ED%8C%8C%EC%9D%B4-%EB%82%A0%EC%A7%9C%EC%97%90-%EA%B4%80%EA%B3%84%EB%90%9C-%ED%95%A8%EC%88%98%EB%93%A4 uses DateUtils; // 날짜나 시간을 String으로 function DateToStr(Date: TDateTime): string; function TimeToStr(Time: TDateTime): string; // 스트링을 날짜나 시간으로 function StrToDate(const S: string): TDateTime; - Ex - { var myDate : TDateTime; begin myDate := StrToDate('75-03-15'); ShowMessage('75-03-15 = '+DateTimeToStr(myDate)); myDate := StrToDate('2075-01-01'); ShowMessage('2075-01-01 = '+DateTimeToStr(myDate)); end; } function StrToTime(const S: string): TDateTime; // String과 TDateTime간의 변환 function StrToDateTime(const S: string): TDateTime; function DateTimeToStr(DateTime: TDateTime): string; function Date: TDateTime; function Time: TDateTime; procedure DecodeTime(Time: TDateTime; var Hour, Min, Sec, MSec: Word); function EncodeTime(Hour, Min, Sec, MSec: Word): TDateTime; function DayOfWeek(Dat...