zoukankan      html  css  js  c++  java
  • 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.

  • 相关阅读:
    get post 小结
    ddt 实例
    通俗大白话来理解TCP协议的三次握手和四次断开
    find xss
    use . adb . get wifi
    http bass
    mac 配置homebrew
    id 与 void * 转换
    Maven
    percent-encode 百分号编码
  • 原文地址:https://www.cnblogs.com/lantianhf/p/5820500.html
Copyright © 2011-2022 走看看