博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习官方示例 - SysUtils.EncodeDate、EncodeTime、StrToDate、StrToTime、StrToDateTime
阅读量:5936 次
发布时间:2019-06-19

本文共 1798 字,大约阅读时间需要 5 分钟。

来自万一老师

代码文件:

unit Unit1;interfaceuses  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,  Dialogs, StdCtrls;type  TForm1 = class(TForm)    ListBox1: TListBox;    Button1: TButton;    Button2: TButton;    procedure Button1Click(Sender: TObject);    procedure Button2Click(Sender: TObject);  end;var  Form1: TForm1;implementation{$R *.dfm}procedure TForm1.Button1Click(Sender: TObject);var  D: TDate;  T: TTime;begin  D := EncodeDate(2008, 9, 11);  T := EncodeTime(14, 56, 12, 1);  ListBox1.Clear;  ListBox1.Items.Add(FormatDateTime('yyyy/mm/dd', D));  ListBox1.Items.Add(FormatDateTime('hh:nn:ss:zzz', T));end;procedure TForm1.Button2Click(Sender: TObject);var  D: TDate;  T: TTime;  DT: TDateTime;begin  D := StrToDate('2008-9-11');  T := StrToTime('14:56:06');  DT := StrToDateTime('2008-9-11 14:56:06');  ListBox1.Clear;  ListBox1.Items.Add(DateToStr(D));  ListBox1.Items.Add(TimeToStr(T));  ListBox1.Items.Add(DateTimeToStr(DT));end;end.

窗体文件:

object Form1: TForm1  Left = 0  Top = 0  Caption = 'Form1'  ClientHeight = 93  ClientWidth = 249  Color = clBtnFace  Font.Charset = DEFAULT_CHARSET  Font.Color = clWindowText  Font.Height = -11  Font.Name = 'Tahoma'  Font.Style = []  OldCreateOrder = False  PixelsPerInch = 96  TextHeight = 13  object Button1: TButton    Left = 158    Top = 14    Width = 75    Height = 25    Caption = 'Button1'    TabOrder = 0    OnClick = Button1Click  end  object ListBox1: TListBox    Left = 0    Top = 0    Width = 145    Height = 93    Align = alLeft    ItemHeight = 13    TabOrder = 1    ExplicitHeight = 206  end  object Button2: TButton    Left = 158    Top = 53    Width = 75    Height = 25    Caption = 'Button2'    TabOrder = 2    OnClick = Button2Click  endend

转载于:https://www.cnblogs.com/wanqian/archive/2013/05/20/3089745.html

你可能感兴趣的文章
领域驱动设计,构建简单的新闻系统,20分钟够吗?
查看>>
web安全问题分析与防御总结
查看>>
React 组件通信之 React context
查看>>
ZooKeeper 可视化监控 zkui
查看>>
Linux下通过配置Crontab实现进程守护
查看>>
ios 打包上传Appstore 时报的错误 90101 90149
查看>>
Oracle推出轻量级Java微服务框架Helidon
查看>>
密码概述
查看>>
nagios+nrpe监控配置错误日志集
查看>>
JavaScript应用开发实践指南迷你书
查看>>
autoconf,automake,libtool
查看>>
jQuery的技巧01
查看>>
基于泛型实现的ibatis通用分页查询
查看>>
gopacket 使用
查看>>
AlertDialog对话框
查看>>
我的友情链接
查看>>
办公室几台电脑怎么连一台打印机的具体步骤
查看>>
linux安全---cacti+ntop监控
查看>>
鸟哥的linux私房菜-shell简单学习-1
查看>>
nagios配置监控的一些思路和工作流程
查看>>