首页 > 编程 > Delphi > 正文

在Delphi中处理数据库日期型字段的显示与输入===>>>主窗口单元

2019-11-18 18:49:44
字体:
来源:转载
供稿:网友

{主窗口单元}
unit Main;

interface

uses
……{略去其他内容}
PRocedure Table1BirthdayGetText(Sender: TField;
var Text: String;DisplayText: Boolean);
procedure Table1BirthdaySetText(Sender: TField;
const Text: String);
private
{ Private declarations }
public
{ Public declarations }
……{略}
implementation

{将自定义的单元包含进来}
uses DBDateEditMaskTrans;

{$R *.DFM}
……{其他过程略}
procedure TForm1.FormActivate(Sender: TObject);
{设置一个日期型字段的输入掩码,
可以放到TField字段定义中。}
begin
  Table1.FieldByName('Birthday').EditMask:=
'9999年99月99日;1;_';
end;

procedure TForm1.Table1BirthdayGetText(Sender:
TField; var Text: String;DisplayText: Boolean);
begin
  DateFieldGetText(Sender,Text);
end;

procedure TForm1.Table1BirthdaySetText(Sender:
TField; const Text: String);
begin
  if DateFieldSetText(Sender,Text)=False then
    Abort; {转换不成功,日期非法}
end;

end.


上一篇:异常和错误处理(基于Delphi/VCL)

下一篇:在Delphi中处理数据库日期型字段的显示与输入

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注