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获取exe文件版本信息的函数

Delphi读取文本(一行一行读入)

tclientsocket和tserversocket用法

Delphi lockbox 做加密解密

Delphi自动检测u盘插入、拔出及获取u盘盘符

Delphi xe5复制粘贴操作

Delphi 自我拷贝复制

Delphi 移位函数

Delphi xe10 android安卓 移动端 messagedlg 用法

Delphi中的copy,delete,pos和leftstr,rightstr的用法

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



打赏

取消

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

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

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

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

评论

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