delphi 输入年月判断天数,判断指定年份与月份判断当月有多少天
Posted 那里的天空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delphi 输入年月判断天数,判断指定年份与月份判断当月有多少天相关的知识,希望对你有一定的参考价值。
delphi 输入年月判断天数
//需要引用dateutils;
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs,dateutils, StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Edit_nian: TEdit;
Edit_yue: TEdit;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
label3.caption := inttostr(DaysInAMonth(strtoint(Edit_nian.text),strtoint(Edit_yue.text)));
end;
end.
以上是关于delphi 输入年月判断天数,判断指定年份与月份判断当月有多少天的主要内容,如果未能解决你的问题,请参考以下文章