delphi获取星期几


本文整理自网络,侵删。

 unit Unit1;

interface

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

type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

function getWeek:string ;
var
date:SYSTEMTIME;
begin
GetLocalTime(date);

case date.wDayOfWeek of
0:Result:='星期天';
1:Result:='星期一';
2:Result:='星期二';
3:Result:='星期三';
4:Result:='星期四';
5:Result:='星期五';
6:Result:='星期六';
end;
end;

相关阅读 >>

Delphi 如何编写使stringgrid中的一列具有check功能,和checkbox效果一样

Delphi 10.3 控件遮挡 webbrowser

Delphi record,两种声明方式

Delphi tdownloadurl下载网络文件

Delphi 取时间戳

Delphi richedit 加入链接

Delphi byte类型算术运算

Delphi字符串隐藏

Delphi inttohex

Delphi读取utf8格式ini及取得动态�热�

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



打赏

取消

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

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

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

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

评论

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