반응형

Delphi 5

[Delphi] 날짜 관련 함수

출처 - 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('7..

Delphi/Reference 14:01:20
반응형