delphi Yesterday、Today、Tomorrow - 昨天、今天、明天


本文整理自网络,侵删。

 Yesterday、Today、Tomorrow - 昨天、今天、明天
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;

type
TForm1 = class(TForm)
procedure FormCreate(Sender: TObject);
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

uses DateUtils;

procedure TForm1.FormCreate(Sender: TObject);
var
t1,t2,t3: TDateTime;
begin
t1 := Yesterday;
t2 := Today; //同 SysUtils.Date;
t3 := Tomorrow;


ShowMessageFmt('%s, %s, %s', [DateToStr(t1), DateToStr(t2), DateToStr(t3)]);
{2009-5-20, 2009-5-21, 2009-5-22}
end;

end.

相关阅读 >>

Delphi tpicture 和 tbitmap 的相互转换

Delphi randstring 随机字符串

Delphi record,两种声明方式

Delphi applicationevents1 webbrowser1屏蔽右键菜单

Delphi android 关闭应用程序对话框询问

Delphi 搭配hotkeyedit控件来解决问题

Delphi md5加密字符串

xe7提示找不到sharedactivitycontext函数

Delphi下载指定网址(url)的文件,带进度条显示

Delphi firedac 另存json

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...