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监视注册表

postmessage和sendmessage的区别

Delphi汉字的拼音简码

Delphi trayicon1如何把窗体关闭到系统托盘

Delphi 检测是否包含字符

Delphi 计算农历的单元

Delphi 多关键词批量替换

Delphi edit只允许输入数字和小数点

Delphi 把字节数显示成kb或gb的函数

Delphi debug权限提升

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



打赏

取消

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

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

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

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

评论

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